summaryrefslogtreecommitdiffstats
path: root/Modules/_io/fileio.c
Commit message (Collapse)AuthorAgeFilesLines
* Untabify Modules/_io/fileio.cAntoine Pitrou2010-05-051-705/+705
|
* Issue #8438: Remove reference to the missing "surrogateescape" encodingAntoine Pitrou2010-04-191-1/+1
| | | | error handler from the new IO library.
* Revert temporary commit in r79937Antoine Pitrou2010-04-101-37/+18
|
* Temporary commit of fix to issue #5380 (in order to watch buildbot response)Antoine Pitrou2010-04-101-18/+37
|
* #7706: add include guards where they're missing; required for Windows CEAndrew M. Kuchling2010-02-221-0/+6
|
* - Issue #6939: Fix file I/O objects in the `io` module to keep the originalAntoine Pitrou2010-01-311-20/+50
| | | | | | file position when calling `truncate()`. It would previously change the file position to the given argument, which goes against the tradition of ftruncate() and other truncation APIs. Patch by Pascal Chambon.
* accept None as the same as having passed no argument in file types #7349Benjamin Peterson2009-12-131-1/+1
| | | | | | | This is for consistency with imitation file objects like StringIO and BytesIO. This commit also adds a few tests, where they were lacking for concerned methods.
* Issue #6236, #6348: Fix various failures in the io module under AIXAntoine Pitrou2009-09-211-4/+4
| | | | | | | and other platforms, when using a non-gcc compiler. Patch by egreen. In addition, I made explicit the signedness of all bitfields in the IO library.
* Issue #4856: Remove checks for win NT.Hirokazu Yamamoto2009-06-281-5/+2
|
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-0/+1054