summaryrefslogtreecommitdiff
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
...
| | | | | | * | | | | | | | 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 #21677: Fixed chaining nonnormalized exceptions in io close() methods.Serhiy Storchaka2014-06-091-0/+28
| | | | | | |\ \ \ \ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ \ \ Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush...Antoine Pitrou2014-05-091-0/+28
| | | | | | | |\ \ \ \ \ \ \ \ \
| | | | | | | | * | | | | | | | | Issue #21057: TextIOWrapper now allows the underlying binary stream's read() ...Antoine Pitrou2014-04-291-0/+28
* | | | | | | | | | | | | | | | | Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-021-1/+1
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Issue #20557: Use specific asserts in io tests.Serhiy Storchaka2015-08-021-10/+10
* | | | | | | | | | | | | | | | Issue #23796: peak and read1 methods of BufferedReader now raise ValueErrorBerker Peksag2015-05-121-0/+8
* | | | | | | | | | | | | | | | Backported tests from issue #20175.Serhiy Storchaka2015-04-161-0/+11
|/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Issue #22982: Improve BOM handling when seeking to multiple positions of a wr...Antoine Pitrou2015-04-131-0/+13
| |_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | Issue #23309: Avoid a deadlock at shutdown if a daemon thread is abortedAntoine Pitrou2015-04-131-1/+44
| |_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | |
* | | | | | | | | | | | | Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-011-20/+10
|/ / / / / / / / / / / /
* | | | | | | | | | | | Make some tests more frienly to MemoryError.Serhiy Storchaka2015-03-281-4/+11
|/ / / / / / / / / / /
* | | | | | | | | | | Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-0/+47
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Broke reference loops in tests added in issue #5700.Serhiy Storchaka2015-02-231-0/+3
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-211-2/+48
|/ / / / / / / /
* | | | | | | | allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-211-0/+14
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | fix possible double free in TextIOWrapper.__init__ (closes #22849)Benjamin Peterson2014-11-121-0/+15
|/ / / / / /
* | | | | | merge 3.3 (#22517)Benjamin Peterson2014-09-291-58/+211
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | |
| * | | | | Issue #22331: Skip test_interrupted_write_text() on FreeBSD older than 8.0Victor Stinner2014-09-031-0/+2
| | |_|_|/ | |/| | |
| * | | | 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 #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush...Antoine Pitrou2014-05-091-0/+32
| |/
| * 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-59/+130
| |\ \
| | * | 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-52/+67
| | |\ \
| | | * | 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-27/+35
| | | |\ \
| | | | * \ Issue #17835: Fix test_io when the default OS pipe buffer size is larger than...Antoine Pitrou2013-04-241-27/+35
| | | | |\ \
| | | | | * \ #17479: merge with 3.3.Ezio Melotti2013-03-231-27/+35
| | | | | |\ \
| | | | | | * \ Merge #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-231-27/+35
| | | | | | |\ \
| | | | | | | * \ 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-151-0/+9
| | | | | | | * | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-26/+26
| | | | | | | * | | merge 3.3 (#16597)Benjamin Peterson2012-12-201-1/+9
| | | | | | | |\ \ \
| | | | | | | | * | | Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-171-1/+1
| | | | | | | | * | | Merge for issue #15744: add tests for the writelines() method of file objects.Antoine Pitrou2012-10-161-1/+46
| | | | | | | | |\ \ \
| | | | | | | | * | | | Closes #15488: Closed files keep their buffer aliveJesus Cea2012-10-041-0/+8
* | | | | | | | | | | | clear BufferedRWPair weakrefs on deallocation (closes #22517)Benjamin Peterson2014-09-291-0/+6
* | | | | | | | | | | | Issue #20404: reject non-text encodings early in TextIOWrapper.Georg Brandl2014-03-021-6/+24
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-121-0/+38
|/ / / / / / / / / /
* | | | | | | | | | Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-2/+3
|/ / / / / / / / /
* | | | | | | | | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-8/+4
|/ / / / / / / /
* | | | | | | | 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
|/ / / / / /