Mailing List Archive

CVS: python/dist/src/Objects fileobject.c
Update of /projects/cvsroot/python/dist/src/Objects
In directory eric:/projects/python/develop/guido/src/Objects

Modified Files:
fileobject.c
Log Message:
Fix two places (seek and truncate) where a cascade of PyArg_Parse
calls was used instead of a single PyArg_ParseTuple call with an
optional argument.
CVS: python/dist/src/Objects fileobject.c [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Objects
In directory eric:/projects/python/develop/guido/src/Objects

Modified Files:
fileobject.c
Log Message:
Changes for long file support by Steve Clift.
(This also redoes my previous patch, but better.)
CVS: python/dist/src/Objects fileobject.c [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Objects
In directory eric:/projects/python/develop/guido/src/Objects

Modified Files:
fileobject.c
Log Message:
Need to include <sys/types.h> for off_t.
CVS: python/dist/src/Objects fileobject.c [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Objects
In directory eric:/projects/python/develop/guido/src/Objects

Modified Files:
fileobject.c
Log Message:
Jim Ahlstrom patch: BIGCHUNK is too large for 16-bit int.