[Python-checkins] python/dist/src/Objects listobject.c,2.104,2.105

nascheme@sourceforge.net nascheme@sourceforge.net
Thu, 11 Apr 2002 19:44:02 -0700


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

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


Index: listobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/listobject.c,v
retrieving revision 2.104
retrieving revision 2.105
diff -C2 -d -r2.104 -r2.105
*** listobject.c	28 Mar 2002 20:34:59 -0000	2.104
--- listobject.c	12 Apr 2002 02:43:59 -0000	2.105
***************
*** 1715,1719 ****
  	PyType_GenericAlloc,			/* tp_alloc */
  	PyType_GenericNew,			/* tp_new */
! 	_PyObject_GC_Del,			/* tp_free */
  };
  
--- 1715,1719 ----
  	PyType_GenericAlloc,			/* tp_alloc */
  	PyType_GenericNew,			/* tp_new */
! 	PyObject_GC_Del,        		/* tp_free */
  };