[Python-checkins] python/dist/src/Include fileobject.h,2.34,2.35
rhettinger at users.sourceforge.net
rhettinger at users.sourceforge.net
Sun May 30 20:35:54 EDT 2004
Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10541/Include
Modified Files:
fileobject.h
Log Message:
Add weakref support to array.array and file objects.
Index: fileobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/fileobject.h,v
retrieving revision 2.34
retrieving revision 2.35
diff -C2 -d -r2.34 -r2.35
*** fileobject.h 7 Feb 2004 13:53:45 -0000 2.34
--- fileobject.h 31 May 2004 00:35:51 -0000 2.35
***************
*** 25,28 ****
--- 25,29 ----
int f_skipnextlf; /* Skip next \n */
PyObject *f_encoding;
+ PyObject *weakreflist; /* List of weak references */
} PyFileObject;
More information about the Python-checkins
mailing list