summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-1/+39
* call close on the underlying stream even if flush raises (#16597)Benjamin Peterson2012-12-201-0/+27
* Also add tests for TextIOWrapper.writelines() (issue #15744).Antoine Pitrou2012-10-161-0/+22
* Add tests for the writelines() method of file objects.Antoine Pitrou2012-10-161-0/+23
* Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-291-4/+18
* #4841: Fix FileIO constructor to honor closefd when called repeatedlyHynek Schlawack2012-05-251-0/+13
* Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError isAntoine Pitrou2011-11-211-3/+74
* Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycleCharles-François Natali2011-10-061-0/+15
* Issue #12213: Fix a buffering bug with interleaved reads and writes thatAntoine Pitrou2011-08-201-2/+43
* Issue #12149: Update the method cache after a type's dictionnary getsAntoine Pitrou2011-07-121-1/+18
* test_io: make quiet the DeprecationWarning('classic int division')Victor Stinner2011-07-051-1/+1
* Issue #12429: Skip interrupted write tests on FreeBSD <= 7Victor Stinner2011-07-041-0/+2
* Issue #12175: RawIOBase.readall() now returns None if read() returns None.Victor Stinner2011-05-251-2/+5
* Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError ifVictor Stinner2011-05-251-0/+2
* Issue #12062: In the `io` module, fix a flushing bug when doing a certainAntoine Pitrou2011-05-121-0/+26
* Merged revisions 88610 via svnmerge fromAntoine Pitrou2011-02-251-1/+94
* Merged revisions 87427 via svnmerge fromAntoine Pitrou2010-12-211-0/+13
* Merged revisions 86981,86984 via svnmerge fromAntoine Pitrou2010-12-031-0/+38
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-164/+164
* Merged revisions 85482 via svnmerge fromAntoine Pitrou2010-10-141-0/+2
* Merged revisions 84814 via svnmerge fromAntoine Pitrou2010-09-141-10/+34
* Silence warning about 1/0Florent Xicluna2010-09-131-1/+1
* Merged revisions 84239 via svnmerge fromAntoine Pitrou2010-08-211-0/+72
* Merged revisions 83944 via svnmerge fromAntoine Pitrou2010-08-111-0/+24
* Issue #6213: Implement getstate() and setstate() methods of utf-8-sig andVictor Stinner2010-07-281-2/+0
* Issue #7865: The close() method of :mod:`io` objects should not swallowAntoine Pitrou2010-05-031-0/+44
* Issue #7449, last part (11): fix many tests if thread support is disabledVictor Stinner2010-04-271-2/+7
* Revert temporary commit in r79937Antoine Pitrou2010-04-101-41/+0
* Temporary commit of fix to issue #5380 (in order to watch buildbot response)Antoine Pitrou2010-04-101-0/+41
* Replace catch_warnings with check_warnings when it makes sense. Use assertRa...Florent Xicluna2010-03-311-1/+0
* Cleanup some test cases using check_warnings and check_py3k_warnings.Florent Xicluna2010-03-171-14/+4
* Remove unused imports in test modules.Georg Brandl2010-02-071-2/+1
* #7092: Silence more py3k warnings. Patch by Florent Xicluna.Ezio Melotti2010-02-031-2/+2
* - Issue #6939: Fix file I/O objects in the `io` module to keep the originalAntoine Pitrou2010-01-311-3/+17
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-16/+16
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-2/+2
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-2/+2
* accept None as the same as having passed no argument in file types #7349Benjamin Peterson2009-12-131-4/+32
* #6750: TextIOWrapped could duplicate output when several threads write to it.Amaury Forgeot d'Arc2009-08-291-0/+21
* Issue #6629: Fix a data corruption issue in the new `io` package, which couldAntoine Pitrou2009-08-061-0/+20
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-13/+13
* Issue #6215: Fixed to use self.open() instead of open() or io.open().Hirokazu Yamamoto2009-06-171-18/+18
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-488/+1508
* handle SEEK_ constants in test_ioBenjamin Peterson2009-04-021-4/+4
* Issue #5008: When a file is opened in append mode with the new IO library,Antoine Pitrou2009-01-211-0/+11
* #4736 BufferRWPair.closed shouldn't try to call another property as a functionBenjamin Peterson2008-12-241-1/+2
* Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.).Antoine Pitrou2008-12-141-41/+73
* backport r67325: make FileIO.mode always contain 'b'Benjamin Peterson2008-11-221-7/+7
* Fixed issue #4233.Amaury Forgeot d'Arc2008-11-201-0/+24
* backport r67300Benjamin Peterson2008-11-201-0/+31