| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 |
| | | | | | | exceptions raised by the implicit flush(). Also ensure that calling close() several times is supported. Patch by Pascal Chambon. | ||||
| * | Issue #8438: Remove reference to the missing "surrogateescape" encoding | Antoine Pitrou | 2010-04-19 | 1 | -1/+1 |
| | | | | | error handler from the new IO library. | ||||
| * | 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 |
| | | | | | | | 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. | ||||
| * | 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 |
| | | | | | | | | 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 #7228: Fix format mismatch when printing something of type off_t. | Mark Dickinson | 2009-11-24 | 2 | -3/+21 |
| | | | | | (Should silence some compiler warnings.) | ||||
| * | 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 |
| | | | | | | The sensible solution seems to be to implement %lld for PyString_FromFormat(V) and PyErr_Format. See issue #7228. | ||||
| * | 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 |
| | | | | | where off_t has type long (e.g., 64-bit Linux). | ||||
| * | Use correct conversion specifier and length modifier when printing an | Mark Dickinson | 2009-10-26 | 2 | -8/+14 |
| | | | | | integer of type off_t. Also, don't assume that long long is available. | ||||
| * | 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 |
| | | | | | arbitrary keywords | ||||
| * | Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and ↵ | Antoine Pitrou | 2009-10-24 | 2 | -9/+260 |
| | | | | | io.StringIO picklable. | ||||
| * | Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of ↵ | Antoine Pitrou | 2009-10-24 | 2 | -6/+10 |
| | | | | | io.StringIO and io.BytesIO | ||||
| * | Fix compilation warning on Windows, where size_t is 32bit but file offsets ↵ | Amaury Forgeot d'Arc | 2009-10-05 | 1 | -6/+7 |
| | | | | | are 64bit. | ||||
| * | Issue #6236, #6348: Fix various failures in the io module under AIX | Antoine Pitrou | 2009-09-21 | 2 | -7/+7 |
| | | | | | | | | 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. | ||||
| * | #6750: TextIOWrapped could duplicate output when several threads write to it. | Amaury Forgeot d'Arc | 2009-08-29 | 1 | -4/+9 |
| | | | | | this affect text files opened with io.open(), and the print() function of py3k | ||||
| * | Issue #6629: Fix a data corruption issue in the new `io` package, which could | Antoine Pitrou | 2009-08-06 | 1 | -0/+13 |
| | | | | | | | | | occur when writing to a BufferedRandom object (e.g. a file opened in "rb+" or "wb+" mode) after having buffered a certain amount of data for reading. This bug was not present in the pure Python implementation. Yes, this is a serious issue. | ||||
| * | 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 |
