Mailing List Archive

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

Modified Files:
posixmodule.c
Log Message:
Changes for long file support by Steve Clift.
Also added access() and ttyname() by Sean Reifschneider.
CVS: python/dist/src/Modules posixmodule.c [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
posixmodule.c
Log Message:
Change the access() code to return 1 if granted, 0 if not granted.
Patch (again) by Sean Reifschneider.
CVS: python/dist/src/Modules posixmodule.c [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
posixmodule.c
Log Message:
Added fsync() and fdatasync(). Patches by Scott Cotton. Requires
HAVE_* macros set by configure script.
CVS: python/dist/src/Modules posixmodule.c [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
posixmodule.c
Log Message:
Need extern decl. for fdatasync() in case it exists but isn't declared
anywhere (or, more likely, the declaration requires a magical
combination of _POSIX defines).