| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying | Serhiy Storchaka | 2013-02-03 | 1 | -18/+44 |
|
|
* | Additional fix for Issue #12268: The io module file object writelines() metho... | 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 |
|
|
* | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|
|
* | #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. | Ezio Melotti | 2012-09-18 | 3 | -3/+3 |
|
|
* | Issue #15868: Fix refleak in bytesio.c (Coverity #715365). | Stefan Krah | 2012-09-08 | 1 | -1/+3 |
|
|
* | Issue #15841: The readable(), writable() and seekable() methods of 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 |
|
|
* | open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't | Victor Stinner | 2012-08-03 | 2 | -6/+6 |
|
|
* | 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 |
|
|
* | Fixes issue #12268: File readline, readlines and read() or readall() methods | Gregory P. Smith | 2012-06-24 | 5 | -8/+49 |
|
|
* | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 1 | -6/+5 |
|
|
* | #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 in “seperat{or,ion}” | Éric Araujo | 2012-02-26 | 2 | -2/+2 |
|
|
* | Issue #13848: open() and the FileIO constructor now check for NUL characters ... | Antoine Pitrou | 2012-01-29 | 1 | -22/+11 |
|
|
* | Fix the _io module leaking references when a sub-interpreter is created. | Antoine Pitrou | 2012-01-18 | 1 | -48/+36 |
|
|
* | Issue #10350: Read and save errno before calling a function which might overw... | Antoine Pitrou | 2011-12-16 | 1 | -3/+11 |
|
|
* | 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-05 | 1 | -0/+5 |
|
|
* | Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation | Antoine Pitrou | 2011-10-04 | 1 | -0/+3 |
|
|
* | cast to getter | Benjamin Peterson | 2011-09-06 | 1 | -1/+1 |
|
|
* | add a __dict__ descr for IOBase (closes #12878) | Benjamin Peterson | 2011-09-03 | 1 | -0/+14 |
|
|
* | Issue #12213: Fix a buffering bug with interleaved reads and writes that | Antoine Pitrou | 2011-08-20 | 1 | -59/+58 |
|
|
* | Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without | Antoine Pitrou | 2011-07-23 | 1 | -6/+14 |
|
|
* | Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIO... | Antoine Pitrou | 2011-07-13 | 1 | -1/+1 |
|
|
* | Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. | Victor Stinner | 2011-07-05 | 1 | -0/+8 |
|
|
* | (Merge 3.1) Issue #12175: RawIOBase.readall() now returns None if read() | Victor Stinner | 2011-05-25 | 1 | -0/+8 |
|\ |
|
| * | Issue #12175: RawIOBase.readall() now returns None if read() returns None. | Victor Stinner | 2011-05-25 | 1 | -0/+8 |
|
|
* | | (Merge 3.1) Issue #12175: FileIO.readall() now raises a ValueError instead of | Victor Stinner | 2011-05-25 | 1 | -0/+2 |
|\ \
| |/ |
|
| * | Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if | Victor Stinner | 2011-05-25 | 1 | -0/+2 |
|
|
* | | Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence | Antoine Pitrou | 2011-05-12 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence | Antoine Pitrou | 2011-05-12 | 1 | -1/+1 |
|
|
* | | Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on | Victor Stinner | 2011-03-20 | 1 | -1/+8 |
|
|
* | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 2 | -2/+2 |
|\ \
| |/ |
|
| * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 2 | -2/+2 |
|
|
| * | 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 | -17/+51 |
|
|
| * | Merged revisions 85728,85731,85735,85766-85771,85773,85777 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 82629,82632,82724,82757-82758,82760-82763,82798-82799,82801 ... | Georg Brandl | 2010-10-06 | 1 | -1/+1 |
|
|
| * | Merged revisions 76923,76926,77009,77082-77083,77085,77087,77121 via svnmerge... | Georg Brandl | 2010-10-06 | 1 | -0/+3 |
|
|
| * | Merged revisions 84814 via svnmerge from | Antoine Pitrou | 2010-09-14 | 1 | -2/+2 |
|
|