[Python-checkins] python/dist/src/Objects typeobject.c,2.260,2.261

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Fri Jun 25 18:24:38 EDT 2004


Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11852

Modified Files:
	typeobject.c 
Log Message:
Cosmetic spacing fix.

Index: typeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v
retrieving revision 2.260
retrieving revision 2.261
diff -C2 -d -r2.260 -r2.261
*** typeobject.c	25 Jun 2004 22:17:39 -0000	2.260
--- typeobject.c	25 Jun 2004 22:24:35 -0000	2.261
***************
*** 3955,3959 ****
  	if (func == NULL)
  		return -1;
! 	if(PyDict_SetItemString(type->tp_dict, "__new__", func)) {
  		Py_DECREF(func);
  		return -1;
--- 3955,3959 ----
  	if (func == NULL)
  		return -1;
! 	if (PyDict_SetItemString(type->tp_dict, "__new__", func)) {
  		Py_DECREF(func);
  		return -1;




More information about the Python-checkins mailing list