[Python-checkins] python/dist/src/Objects descrobject.c,2.23,2.24

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


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

Modified Files:
	descrobject.c 
Log Message:
PyObject_GC_Del can now be used as a function designator.


Index: descrobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/descrobject.c,v
retrieving revision 2.23
retrieving revision 2.24
diff -C2 -d -r2.23 -r2.24
*** descrobject.c	25 Mar 2002 17:43:22 -0000	2.23
--- descrobject.c	12 Apr 2002 02:41:47 -0000	2.24
***************
*** 1128,1131 ****
  	PyType_GenericAlloc,			/* tp_alloc */
  	PyType_GenericNew,			/* tp_new */
! 	_PyObject_GC_Del,			/* tp_free */
  };
--- 1128,1131 ----
  	PyType_GenericAlloc,			/* tp_alloc */
  	PyType_GenericNew,			/* tp_new */
! 	PyObject_GC_Del,               		/* tp_free */
  };