| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Merged revisions 83944 via svnmerge from | Antoine Pitrou | 2010-08-11 | 1 | -1/+4 |
|
|
* | Merged revisions 83411 via svnmerge from | Antoine Pitrou | 2010-08-01 | 1 | -0/+2 |
|
|
* | Untabify Modules/_io/fileio.c | Antoine Pitrou | 2010-05-05 | 1 | -705/+705 |
|
|
* | Issue #7865: The close() method of :mod:`io` objects should not swallow | Antoine Pitrou | 2010-05-03 | 4 | -17/+24 |
|
|
* | Issue #8438: Remove reference to the missing "surrogateescape" encoding | Antoine Pitrou | 2010-04-19 | 1 | -1/+1 |
|
|
* | Revert temporary commit in r79937 | Antoine Pitrou | 2010-04-10 | 1 | -37/+18 |
|
|
* | Temporary commit of fix to issue #5380 (in order to watch buildbot response) | Antoine Pitrou | 2010-04-10 | 1 | -18/+37 |
|
|
* | #7706: add include guards where they're missing; required for Windows CE | Andrew M. Kuchling | 2010-02-22 | 1 | -0/+6 |
|
|
* | - Issue #6939: Fix file I/O objects in the `io` module to keep the original | Antoine Pitrou | 2010-01-31 | 5 | -35/+55 |
|
|
* | Issue #7545: improve documentation of the `buffering` argument in io.open(). | Antoine Pitrou | 2009-12-19 | 1 | -4/+14 |
|
|
* | remove unused variable | Benjamin Peterson | 2009-12-13 | 1 | -1/+1 |
|
|
* | accept None as the same as having passed no argument in file types #7349 | Benjamin Peterson | 2009-12-13 | 6 | -25/+32 |
|
|
* | Issue #7228: Fix format mismatch when printing something of type off_t. | Mark Dickinson | 2009-11-24 | 2 | -3/+21 |
|
|
* | Buffered I/O: optimize lock taking in the common non-contended case. | Antoine Pitrou | 2009-11-01 | 1 | -3/+5 |
|
|
* | Roll back ill-considered attempts to fix printf specifier mismatch for off_t. | Mark Dickinson | 2009-10-29 | 2 | -26/+9 |
|
|
* | Fix format specifier for MSVC | Mark Dickinson | 2009-10-28 | 1 | -1/+1 |
|
|
* | Replace long long with PY_LONG_LONG | Mark Dickinson | 2009-10-28 | 1 | -2/+2 |
|
|
* | Silence gcc warnings when trying to print an off_t using "lld", on platforms | Mark Dickinson | 2009-10-27 | 2 | -3/+14 |
|
|
* | Use correct conversion specifier and length modifier when printing an | Mark Dickinson | 2009-10-26 | 2 | -8/+14 |
|
|
* | Fix compilation error in debug mode. | Antoine Pitrou | 2009-10-24 | 1 | -3/+0 |
|
|
* | Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept ... | Antoine Pitrou | 2009-10-24 | 1 | -1/+3 |
|
|
* | Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and io.String... | Antoine Pitrou | 2009-10-24 | 2 | -9/+260 |
|
|
* | Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of io.StringI... | Antoine Pitrou | 2009-10-24 | 2 | -6/+10 |
|
|
* | Fix compilation warning on Windows, where size_t is 32bit but file offsets ar... | Amaury Forgeot d'Arc | 2009-10-05 | 1 | -6/+7 |
|
|
* | Issue #6236, #6348: Fix various failures in the io module under AIX | Antoine Pitrou | 2009-09-21 | 2 | -7/+7 |
|
|
* | #6750: TextIOWrapped could duplicate output when several threads write to it. | Amaury Forgeot d'Arc | 2009-08-29 | 1 | -4/+9 |
|
|
* | Issue #6629: Fix a data corruption issue in the new `io` package, which could | Antoine Pitrou | 2009-08-06 | 1 | -0/+13 |
|
|
* | Issue #4856: Remove checks for win NT. | Hirokazu Yamamoto | 2009-06-28 | 1 | -5/+2 |
|
|
* | backport r73430 | Benjamin Peterson | 2009-06-14 | 1 | -9/+0 |
|
|
* | Issue #6215: backport the 3.1 io lib | Antoine Pitrou | 2009-06-12 | 8 | -0/+9244 |
|
|