summaryrefslogtreecommitdiff
path: root/Lib/_pyio.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)...Zackery Spytz2018-06-291-0/+1
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* Issue #20699: Document that “io” methods should accept memoryviewMartin Panter2016-06-031-5/+4
* Issue #27171: Fix typos in documentation, code comments, and testsMartin Panter2016-06-021-1/+1
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-2/+2
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-311-0/+6
* Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-2/+4
* wrap properlyBenjamin Peterson2015-03-181-2/+2
* allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-211-2/+2
* Issue #21310: Fixed possible resource leak in failed open().Serhiy Storchaka2014-06-091-30/+37
* Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline tran...Antoine Pitrou2014-02-021-1/+7
* Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,Terry Jan Reedy2013-03-111-1/+1
* call close on the underlying stream even if flush raises (#16597)Benjamin Peterson2012-12-201-4/+8
* Issue #15841: The readable(), writable() and seekable() methods of io.BytesIOAntoine Pitrou2012-09-051-0/+8
* Fix typo “seperator”Éric Araujo2012-02-261-1/+1
* Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError isAntoine Pitrou2011-11-211-26/+25
* Issue #12175: RawIOBase.readall() now returns None if read() returns None.Victor Stinner2011-05-251-1/+5
* Merged revisions 88610 via svnmerge fromAntoine Pitrou2011-02-251-4/+27
* Merged revisions 87427 via svnmerge fromAntoine Pitrou2010-12-211-6/+14
* Merged revisions 84814 via svnmerge fromAntoine Pitrou2010-09-141-1/+3
* _pyio: Fix TextIOWrapper constructor: os has no device_encoding() functionVictor Stinner2010-05-041-11/+6
* Issue #7865: The close() method of :mod:`io` objects should not swallowAntoine Pitrou2010-05-031-14/+8
* 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
* 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 io.String...Antoine Pitrou2009-10-241-0/+5
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-0/+1962