Mailing List Archive

python/dist/src/Objects moduleobject.c,2.41,2.42
Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv13287/Objects

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


Index: moduleobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/moduleobject.c,v
retrieving revision 2.41
retrieving revision 2.42
diff -C2 -d -r2.41 -r2.42
*** moduleobject.c 12 Mar 2002 20:37:02 -0000 2.41
--- moduleobject.c 12 Apr 2002 02:44:22 -0000 2.42
***************
*** 238,241 ****
PyType_GenericAlloc, /* tp_alloc */
PyType_GenericNew, /* tp_new */
! _PyObject_GC_Del, /* tp_free */
};
--- 238,241 ----
PyType_GenericAlloc, /* tp_alloc */
PyType_GenericNew, /* tp_new */
! PyObject_GC_Del, /* tp_free */
};