summaryrefslogtreecommitdiffstats
path: root/Lib/_pyio.py
Commit message (Collapse)AuthorAgeFilesLines
* _pyio: Fix TextIOWrapper constructor: os has no device_encoding() functionVictor Stinner2010-05-041-11/+6
| | | | _io module doesn't call this function which was introduced in Python3.
* Issue #7865: The close() method of :mod:`io` objects should not swallowAntoine Pitrou2010-05-031-14/+8
| | | | | exceptions raised by the implicit flush(). Also ensure that calling close() several times is supported. Patch by Pascal Chambon.
* correct signatureBenjamin Peterson2010-04-271-1/+1
|
* condense importBenjamin Peterson2010-04-271-2/+1
|
* fold __future__ importsBenjamin Peterson2010-04-271-2/+1
|
* fix commentBenjamin Peterson2010-04-271-1/+1
|
* reject None as the buffering argument like the C implementation does #8546Benjamin Peterson2010-04-271-4/+2
|
* Fix some py3k warnings in the standard library.Florent Xicluna2010-03-071-4/+13
|
* - Issue #6939: Fix file I/O objects in the `io` module to keep the originalAntoine Pitrou2010-01-311-5/+3
| | | | | | 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.
* Remove superfetatory paragraph (left there by mistake).Antoine Pitrou2009-12-191-5/+0
|
* Issue #7545: improve documentation of the `buffering` argument in io.open().Antoine Pitrou2009-12-191-0/+15
|
* Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and ↵Antoine Pitrou2009-10-241-0/+5
| | | | io.StringIO picklable.
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-0/+1962