Mailing List Archive

python/dist/src/Objects fileobject.c,2.156,2.157
Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv13086/Objects

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


Index: fileobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/fileobject.c,v
retrieving revision 2.156
retrieving revision 2.157
diff -C2 -d -r2.156 -r2.157
*** fileobject.c 8 Apr 2002 04:13:12 -0000 2.156
--- fileobject.c 12 Apr 2002 02:43:31 -0000 2.157
***************
*** 1632,1636 ****
PyType_GenericAlloc, /* tp_alloc */
file_new, /* tp_new */
! _PyObject_Del, /* tp_free */
};

--- 1632,1636 ----
PyType_GenericAlloc, /* tp_alloc */
file_new, /* tp_new */
! PyObject_Del, /* tp_free */
};