| Commit message (Expand) | Author | Age | Files | Lines |
* | clear BufferedRWPair weakrefs on deallocation (closes #22517) | Benjamin Peterson | 2014-09-30 | 1 | -0/+2 |
|
|
* | Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. | Berker Peksag | 2014-09-24 | 1 | -3/+5 |
|
|
* | properly decref the return value of close() | Benjamin Peterson | 2014-07-05 | 1 | -3/+5 |
|
|
* | Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, | Victor Stinner | 2014-07-02 | 1 | -2/+2 |
|
|
* | Issue #21310: Fixed possible resource leak in failed open(). | Serhiy Storchaka | 2014-06-09 | 1 | -9/+21 |
|
|
* | Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_Resize | Kristján Valur Jónsson | 2014-04-25 | 1 | -12/+3 |
|
|
* | #15840: make docs consistent by saying operations on closed files raise Value... | Andrew Kuchling | 2014-04-15 | 1 | -2/+2 |
|
|
* | Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. | Serhiy Storchaka | 2014-02-12 | 1 | -2/+7 |
|
|
* | Issue #18876: The FileIO.mode attribute now better reflects the actual mode u... | Antoine Pitrou | 2013-09-04 | 1 | -10/+13 |
|
|
* | Issue #13461: Fix a crash in the TextIOWrapper.tell method and in the "replace" | Serhiy Storchaka | 2013-08-20 | 1 | -1/+1 |
|
|
* | Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, | Terry Jan Reedy | 2013-03-11 | 1 | -1/+1 |
|
|
* | #17275: Fix class name in init errors in C bufferedio classes. | R David Murray | 2013-02-24 | 1 | -2/+2 |
|
|
* | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying | Serhiy Storchaka | 2013-02-03 | 1 | -19/+44 |
|
|
* | Additional fix for Issue #12268: The io module file object writelines() methods | Gregory P. Smith | 2013-02-01 | 2 | -3/+9 |
|
|
* | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-19 | 2 | -4/+5 |
|
|
* | Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB | Victor Stinner | 2013-01-03 | 1 | -2/+11 |
|
|
* | call close on the underlying stream even if flush raises (#16597) | Benjamin Peterson | 2012-12-20 | 2 | -9/+33 |
|
|
* | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|
|
* | Fixes Issue #12268 for the io module - File readline, readlines and | Gregory P. Smith | 2012-10-12 | 5 | -8/+49 |
|
|
* | #15796: Fix \n in readline docstring. | Ezio Melotti | 2012-09-18 | 1 | -1/+1 |
|
|
* | Issue #15841: The readable(), writable() and seekable() methods of io.BytesIO | Antoine Pitrou | 2012-09-05 | 2 | -8/+31 |
|
|
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -1/+4 |
|
|
* | Make TextIOWrapper's documentation clearer by copying the newline argument's ... | Antoine Pitrou | 2012-08-03 | 1 | -9/+16 |
|
|
* | Issue #15489: Add a __sizeof__ implementation for BytesIO objects. | Antoine Pitrou | 2012-07-29 | 1 | -0/+12 |
|
|
* | Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. | Antoine Pitrou | 2012-07-29 | 1 | -0/+14 |
|
|
* | Issue #15247: FileIO now raises an error when given a file descriptor pointin... | Antoine Pitrou | 2012-07-06 | 1 | -12/+5 |
|
|
* | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 1 | -6/+6 |
|
|
* | #4841: Fix FileIO constructor to honor closefd when called repeatedly | Hynek Schlawack | 2012-05-25 | 1 | -3/+7 |
|
|
* | Issue #14437: Fix building the _io module under Cygwin. | Antoine Pitrou | 2012-03-31 | 1 | -1/+1 |
|
|
* | Fix typo “seperator” | Éric Araujo | 2012-02-26 | 2 | -2/+2 |
|
|
* | Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is | Antoine Pitrou | 2011-11-21 | 1 | -32/+46 |
|
|
* | Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ... | Nadeem Vawda | 2011-10-13 | 1 | -15/+4 |
|
|
* | Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle | Charles-François Natali | 2011-10-06 | 1 | -0/+5 |
|
|
* | Issue #12213: Fix a buffering bug with interleaved reads and writes that | Antoine Pitrou | 2011-08-20 | 1 | -59/+58 |
|
|
* | Issue #12434: make StringIO.write error message consistent with Python 2.7 no... | Eli Bendersky | 2011-07-22 | 1 | -1/+1 |
|
|
* | Issue #9611, #9015: FileIO.read(), FileIO.readinto(), FileIO.write() and | Victor Stinner | 2011-07-05 | 1 | -4/+26 |
|
|
* | Issue #12175: RawIOBase.readall() now returns None if read() returns None. | Victor Stinner | 2011-05-25 | 1 | -0/+8 |
|
|
* | Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if | Victor Stinner | 2011-05-25 | 1 | -0/+2 |
|
|
* | Issue #12062: In the `io` module, fix a flushing bug when doing a certain | Antoine Pitrou | 2011-05-12 | 1 | -1/+1 |
|
|
* | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 2 | -2/+2 |
|
|
* | Merged revisions 88610 via svnmerge from | Antoine Pitrou | 2011-02-25 | 1 | -2/+49 |
|
|
* | Merged revisions 87427 via svnmerge from | Antoine Pitrou | 2010-12-21 | 1 | -3/+3 |
|
|
* | Merged revisions 86981,86984 via svnmerge from | Antoine Pitrou | 2010-12-03 | 1 | -19/+57 |
|
|
* | Merged revisions 85768-85771,85773,85777,85823,85825 via svnmerge from | Georg Brandl | 2010-11-26 | 1 | -1/+2 |
|
|
* | Merged revisions 86587 via svnmerge from | Benjamin Peterson | 2010-11-20 | 1 | -3/+8 |
|
|
* | Merged revisions 85982 via svnmerge from | Antoine Pitrou | 2010-10-31 | 1 | -1/+6 |
|
|
* | Merged revisions 85864 via svnmerge from | Antoine Pitrou | 2010-10-27 | 1 | -1/+1 |
|
|
* | Merged revisions 84814 via svnmerge from | Antoine Pitrou | 2010-09-14 | 1 | -2/+2 |
|
|
* | Merged revisions 84438 via svnmerge from | Antoine Pitrou | 2010-09-02 | 2 | -2/+2 |
|
|
* | Merged revisions 84239 via svnmerge from | Antoine Pitrou | 2010-08-21 | 1 | -0/+10 |
|
|