summaryrefslogtreecommitdiffstats
path: root/Modules/_io
Commit message (Expand)AuthorAgeFilesLines
* Fixes Issue #12268 for the io module - File readline, readlines andGregory P. Smith2012-10-125-8/+49
* #15796: Fix \n in readline docstring.Ezio Melotti2012-09-181-1/+1
* Issue #15841: The readable(), writable() and seekable() methods of io.BytesIOAntoine Pitrou2012-09-052-8/+31
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-1/+4
* Make TextIOWrapper's documentation clearer by copying the newline argument's ...Antoine Pitrou2012-08-031-9/+16
* Issue #15489: Add a __sizeof__ implementation for BytesIO objects.Antoine Pitrou2012-07-291-0/+12
* Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-291-0/+14
* Issue #15247: FileIO now raises an error when given a file descriptor pointin...Antoine Pitrou2012-07-061-12/+5
* #10053: Don't close FDs when FileIO.__init__ failsHynek Schlawack2012-06-211-6/+6
* #4841: Fix FileIO constructor to honor closefd when called repeatedlyHynek Schlawack2012-05-251-3/+7
* Issue #14437: Fix building the _io module under Cygwin.Antoine Pitrou2012-03-311-1/+1
* Fix typo “seperator”Éric Araujo2012-02-262-2/+2
* Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError isAntoine Pitrou2011-11-211-32/+46
* Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ...Nadeem Vawda2011-10-131-15/+4
* Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycleCharles-François Natali2011-10-061-0/+5
* Issue #12213: Fix a buffering bug with interleaved reads and writes thatAntoine Pitrou2011-08-201-59/+58
* Issue #12434: make StringIO.write error message consistent with Python 2.7 no...Eli Bendersky2011-07-221-1/+1
* Issue #9611, #9015: FileIO.read(), FileIO.readinto(), FileIO.write() andVictor Stinner2011-07-051-4/+26
* Issue #12175: RawIOBase.readall() now returns None if read() returns None.Victor Stinner2011-05-251-0/+8
* Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError ifVictor Stinner2011-05-251-0/+2
* Issue #12062: In the `io` module, fix a flushing bug when doing a certainAntoine Pitrou2011-05-121-1/+1
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-162-2/+2
* Merged revisions 88610 via svnmerge fromAntoine Pitrou2011-02-251-2/+49
* Merged revisions 87427 via svnmerge fromAntoine Pitrou2010-12-211-3/+3
* Merged revisions 86981,86984 via svnmerge fromAntoine Pitrou2010-12-031-19/+57
* Merged revisions 85768-85771,85773,85777,85823,85825 via svnmerge fromGeorg Brandl2010-11-261-1/+2
* Merged revisions 86587 via svnmerge fromBenjamin Peterson2010-11-201-3/+8
* Merged revisions 85982 via svnmerge fromAntoine Pitrou2010-10-311-1/+6
* Merged revisions 85864 via svnmerge fromAntoine Pitrou2010-10-271-1/+1
* Merged revisions 84814 via svnmerge fromAntoine Pitrou2010-09-141-2/+2
* Merged revisions 84438 via svnmerge fromAntoine Pitrou2010-09-022-2/+2
* Merged revisions 84239 via svnmerge fromAntoine Pitrou2010-08-211-0/+10
* Merged revisions 83944 via svnmerge fromAntoine Pitrou2010-08-111-1/+4
* Merged revisions 83411 via svnmerge fromAntoine Pitrou2010-08-011-0/+2
* Untabify Modules/_io/fileio.cAntoine Pitrou2010-05-051-705/+705
* Issue #7865: The close() method of :mod:`io` objects should not swallowAntoine Pitrou2010-05-034-17/+24
* Issue #8438: Remove reference to the missing "surrogateescape" encodingAntoine Pitrou2010-04-191-1/+1
* 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-315-35/+55
* Issue #7545: improve documentation of the `buffering` argument in io.open().Antoine Pitrou2009-12-191-4/+14
* remove unused variableBenjamin Peterson2009-12-131-1/+1
* accept None as the same as having passed no argument in file types #7349Benjamin Peterson2009-12-136-25/+32
* Issue #7228: Fix format mismatch when printing something of type off_t.Mark Dickinson2009-11-242-3/+21
* Buffered I/O: optimize lock taking in the common non-contended case.Antoine Pitrou2009-11-011-3/+5
* Roll back ill-considered attempts to fix printf specifier mismatch for off_t.Mark Dickinson2009-10-292-26/+9
* Fix format specifier for MSVCMark Dickinson2009-10-281-1/+1
* Replace long long with PY_LONG_LONGMark Dickinson2009-10-281-2/+2
* Silence gcc warnings when trying to print an off_t using "lld", on platformsMark Dickinson2009-10-272-3/+14