[Python-checkins] python/dist/src/Objects complexobject.c,2.55,2.56

nascheme@sourceforge.net nascheme@sourceforge.net
Thu, 11 Apr 2002 19:41:34 -0700


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

Modified Files:
	complexobject.c 
Log Message:
PyObject_Del can now be used as a function designator.


Index: complexobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/complexobject.c,v
retrieving revision 2.55
retrieving revision 2.56
diff -C2 -d -r2.55 -r2.56
*** complexobject.c	22 Mar 2002 02:48:46 -0000	2.55
--- complexobject.c	12 Apr 2002 02:41:32 -0000	2.56
***************
*** 993,997 ****
  	0,					/* tp_alloc */
  	complex_new,				/* tp_new */
! 	_PyObject_Del,				/* tp_free */
  };
  
--- 993,997 ----
  	0,					/* tp_alloc */
  	complex_new,				/* tp_new */
! 	PyObject_Del,           		/* tp_free */
  };