[Python-checkins] python/dist/src/PC _winreg.c,1.11,1.12

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Mon, 19 Aug 2002 12:26:44 -0700


Update of /cvsroot/python/python/dist/src/PC
In directory usw-pr-cvs1:/tmp/cvs-serv20194/PC

Modified Files:
	_winreg.c 
Log Message:
Call me anal, but there was a particular phrase that was speading to
comments everywhere that bugged me: /* Foo is inlined */ instead of
/* Inline Foo */.  Somehow the "is inlined" phrase always confused me
for half a second (thinking, "No it isn't" until I added the missing
"here").  The new phrase is hopefully unambiguous.


Index: _winreg.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/_winreg.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** _winreg.c	19 Jul 2002 06:55:41 -0000	1.11
--- _winreg.c	19 Aug 2002 19:26:41 -0000	1.12
***************
*** 607,611 ****
  	PyHKEYObject *op;
  
! 	/* PyObject_New is inlined */
  	op = (PyHKEYObject *) PyObject_MALLOC(sizeof(PyHKEYObject));
  	if (op == NULL)
--- 607,611 ----
  	PyHKEYObject *op;
  
! 	/* Inline PyObject_New */
  	op = (PyHKEYObject *) PyObject_MALLOC(sizeof(PyHKEYObject));
  	if (op == NULL)