[Python-checkins] python/dist/src/Objects funcobject.c,2.52,2.53

nascheme@sourceforge.net nascheme@sourceforge.net
Thu, 11 Apr 2002 19:43:50 -0700


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

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


Index: funcobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/funcobject.c,v
retrieving revision 2.52
retrieving revision 2.53
diff -C2 -d -r2.52 -r2.53
*** funcobject.c	3 Apr 2002 21:42:45 -0000	2.52
--- funcobject.c	12 Apr 2002 02:43:44 -0000	2.53
***************
*** 555,559 ****
  	PyType_GenericAlloc,			/* tp_alloc */
  	PyType_GenericNew,			/* tp_new */
! 	_PyObject_Del,				/* tp_free */
  };
  
--- 555,559 ----
  	PyType_GenericAlloc,			/* tp_alloc */
  	PyType_GenericNew,			/* tp_new */
! 	PyObject_Del,		                /* tp_free */
  };
  
***************
*** 684,688 ****
  	PyType_GenericAlloc,			/* tp_alloc */
  	PyType_GenericNew,			/* tp_new */
! 	_PyObject_Del,				/* tp_free */
  };
  
--- 684,688 ----
  	PyType_GenericAlloc,			/* tp_alloc */
  	PyType_GenericNew,			/* tp_new */
! 	PyObject_Del,           		/* tp_free */
  };