summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* merge 3.4 (#22517)Benjamin Peterson2014-09-301-0/+6
|\
| * merge 3.3 (#22517)Benjamin Peterson2014-09-301-0/+6
| |\
| | * clear BufferedRWPair weakrefs on deallocation (closes #22517)Benjamin Peterson2014-09-301-0/+6
| | * Issue #20404: reject non-text encodings early in TextIOWrapper.Georg Brandl2014-03-021-6/+24
* | | Issue #22215: Now ValueError is raised instead of TypeError when str or bytesSerhiy Storchaka2014-09-061-2/+2
* | | (Merge 3.4) Issue #22331: Skip test_interrupted_write_text() on FreeBSD olderVictor Stinner2014-09-031-0/+2
|\ \ \ | |/ /
| * | Issue #22331: Skip test_interrupted_write_text() on FreeBSD older than 8.0Victor Stinner2014-09-031-0/+2
* | | Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get andVictor Stinner2014-07-291-14/+4
* | | Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-221-1/+1
* | | add BufferedIOBase.readinto1 (closes #20578)Benjamin Peterson2014-06-221-0/+67
* | | Issue #21310: Fixed possible resource leak in failed open().Serhiy Storchaka2014-06-091-0/+14
|\ \ \ | |/ /
| * | Issue #21310: Fixed possible resource leak in failed open().Serhiy Storchaka2014-06-091-0/+14
* | | Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods.Serhiy Storchaka2014-06-091-0/+51
|\ \ \ | |/ /
| * | Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods.Serhiy Storchaka2014-06-091-0/+51
* | | backout 0fb7789b5eeb for test breakage (#20578)Benjamin Peterson2014-06-081-25/+0
* | | add BufferedIOBase.readinto1 (closes #20578)Benjamin Peterson2014-06-081-0/+25
* | | Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush...Antoine Pitrou2014-05-081-0/+32
|\ \ \ | |/ /
| * | Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush...Antoine Pitrou2014-05-081-0/+32
* | | Issue #21057: TextIOWrapper now allows the underlying binary stream's read() ...Antoine Pitrou2014-04-291-0/+28
|/ /
* | Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-121-0/+38
|\ \ | |/
| * Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-121-0/+38
* | Temporary silence test broken by issue19255.Serhiy Storchaka2014-02-101-1/+2
* | Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-2/+3
|\ \ | |/
| * Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-2/+3
* | Close #20404: blacklist non-text encodings in io.TextIOWrapperNick Coghlan2014-02-041-8/+25
* | Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown.Antoine Pitrou2013-12-211-1/+40
* | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-8/+4
|\ \ | |/
| * Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-8/+4
* | Issue #15204: Silence and check the 'U' mode deprecation warnings in tests.Serhiy Storchaka2013-11-241-1/+2
* | Issue #18112: PEP 442 implementation (safe object finalization).Antoine Pitrou2013-07-301-21/+24
* | test_io: check_interrupted_write() now cancels the alarm if ZeroDivisionErrorVictor Stinner2013-07-151-3/+6
* | Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when rawSerhiy Storchaka2013-05-281-0/+9
|\ \ | |/
| * Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when rawSerhiy Storchaka2013-05-281-0/+9
* | Issue #17835: Fix test_io when the default OS pipe buffer size is larger than...Antoine Pitrou2013-04-241-2/+2
|\ \ | |/
| * Issue #17835: Fix test_io when the default OS pipe buffer size is larger than...Antoine Pitrou2013-04-241-2/+2
* | #17479: merge with 3.3.Ezio Melotti2013-03-231-3/+4
|\ \ | |/
| * #17479: test_io now works with unittest test discovery. Patch by Zachary Ware.Ezio Melotti2013-03-231-3/+4
* | Merge #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-241-0/+18
|\ \ | |/
| * Merge #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-241-0/+18
| |\
| | * #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-241-0/+18
* | | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
|\ \ \ | |/ /
| * | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
| |\ \ | | |/
| | * Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
| * | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+9
| |\ \ | | |/
| | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+9
* | | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-141-0/+9
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-26/+26
* | | merge 3.3 (#16597)Benjamin Peterson2012-12-201-0/+28
|\ \ \ | |/ /
| * | call close on the underlying stream even if flush raises (closes #16597)Benjamin Peterson2012-12-201-0/+28
* | | Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-171-1/+1