index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_io.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying
Serhiy Storchaka
2013-02-03
1
-1/+39
*
call close on the underlying stream even if flush raises (#16597)
Benjamin Peterson
2012-12-20
1
-0/+27
*
Also add tests for TextIOWrapper.writelines() (issue #15744).
Antoine Pitrou
2012-10-16
1
-0/+22
*
Add tests for the writelines() method of file objects.
Antoine Pitrou
2012-10-16
1
-0/+23
*
Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.
Antoine Pitrou
2012-07-29
1
-4/+18
*
#4841: Fix FileIO constructor to honor closefd when called repeatedly
Hynek Schlawack
2012-05-25
1
-0/+13
*
Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is
Antoine Pitrou
2011-11-21
1
-3/+74
*
Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
Charles-François Natali
2011-10-06
1
-0/+15
*
Issue #12213: Fix a buffering bug with interleaved reads and writes that
Antoine Pitrou
2011-08-20
1
-2/+43
*
Issue #12149: Update the method cache after a type's dictionnary gets
Antoine Pitrou
2011-07-12
1
-1/+18
*
test_io: make quiet the DeprecationWarning('classic int division')
Victor Stinner
2011-07-05
1
-1/+1
*
Issue #12429: Skip interrupted write tests on FreeBSD <= 7
Victor Stinner
2011-07-04
1
-0/+2
*
Issue #12175: RawIOBase.readall() now returns None if read() returns None.
Victor Stinner
2011-05-25
1
-2/+5
*
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
-0/+26
*
Merged revisions 88610 via svnmerge from
Antoine Pitrou
2011-02-25
1
-1/+94
*
Merged revisions 87427 via svnmerge from
Antoine Pitrou
2010-12-21
1
-0/+13
*
Merged revisions 86981,86984 via svnmerge from
Antoine Pitrou
2010-12-03
1
-0/+38
*
Merged revisions 86596 via svnmerge from
Ezio Melotti
2010-11-21
1
-164/+164
*
Merged revisions 85482 via svnmerge from
Antoine Pitrou
2010-10-14
1
-0/+2
*
Merged revisions 84814 via svnmerge from
Antoine Pitrou
2010-09-14
1
-10/+34
*
Silence warning about 1/0
Florent Xicluna
2010-09-13
1
-1/+1
*
Merged revisions 84239 via svnmerge from
Antoine Pitrou
2010-08-21
1
-0/+72
*
Merged revisions 83944 via svnmerge from
Antoine Pitrou
2010-08-11
1
-0/+24
*
Issue #6213: Implement getstate() and setstate() methods of utf-8-sig and
Victor Stinner
2010-07-28
1
-2/+0
*
Issue #7865: The close() method of :mod:`io` objects should not swallow
Antoine Pitrou
2010-05-03
1
-0/+44
*
Issue #7449, last part (11): fix many tests if thread support is disabled
Victor Stinner
2010-04-27
1
-2/+7
*
Revert temporary commit in r79937
Antoine Pitrou
2010-04-10
1
-41/+0
*
Temporary commit of fix to issue #5380 (in order to watch buildbot response)
Antoine Pitrou
2010-04-10
1
-0/+41
*
Replace catch_warnings with check_warnings when it makes sense. Use assertRa...
Florent Xicluna
2010-03-31
1
-1/+0
*
Cleanup some test cases using check_warnings and check_py3k_warnings.
Florent Xicluna
2010-03-17
1
-14/+4
*
Remove unused imports in test modules.
Georg Brandl
2010-02-07
1
-2/+1
*
#7092: Silence more py3k warnings. Patch by Florent Xicluna.
Ezio Melotti
2010-02-03
1
-2/+2
*
- Issue #6939: Fix file I/O objects in the `io` module to keep the original
Antoine Pitrou
2010-01-31
1
-3/+17
*
use assert[Not]IsInstance where appropriate
Ezio Melotti
2010-01-24
1
-16/+16
*
Reverting the Revision: 77368. I committed Flox's big patch for tests by
Senthil Kumaran
2010-01-08
1
-2/+2
*
Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...
Senthil Kumaran
2010-01-08
1
-2/+2
*
accept None as the same as having passed no argument in file types #7349
Benjamin Peterson
2009-12-13
1
-4/+32
*
#6750: TextIOWrapped could duplicate output when several threads write to it.
Amaury Forgeot d'Arc
2009-08-29
1
-0/+21
*
Issue #6629: Fix a data corruption issue in the new `io` package, which could
Antoine Pitrou
2009-08-06
1
-0/+20
*
convert usage of fail* to assert*
Benjamin Peterson
2009-06-30
1
-13/+13
*
Issue #6215: Fixed to use self.open() instead of open() or io.open().
Hirokazu Yamamoto
2009-06-17
1
-18/+18
*
Issue #6215: backport the 3.1 io lib
Antoine Pitrou
2009-06-12
1
-488/+1508
*
handle SEEK_ constants in test_io
Benjamin Peterson
2009-04-02
1
-4/+4
*
Issue #5008: When a file is opened in append mode with the new IO library,
Antoine Pitrou
2009-01-21
1
-0/+11
*
#4736 BufferRWPair.closed shouldn't try to call another property as a function
Benjamin Peterson
2008-12-24
1
-1/+2
*
Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.).
Antoine Pitrou
2008-12-14
1
-41/+73
*
backport r67325: make FileIO.mode always contain 'b'
Benjamin Peterson
2008-11-22
1
-7/+7
*
Fixed issue #4233.
Amaury Forgeot d'Arc
2008-11-20
1
-0/+24
*
backport r67300
Benjamin Peterson
2008-11-20
1
-0/+31
[next]