summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18350)Miss Islington (bot)2020-02-041-0/+5
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Miss Islington (bot)2018-10-311-0/+10
* bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exce...Serhiy Storchaka2018-07-171-0/+10
* [3.6] bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)...Zackery Spytz2018-06-291-0/+11
* bpo-33760: Fix file leaks in test_io. (GH-7361) (GH-7372)Miss Islington (bot)2018-06-041-0/+4
* bpo-31479: Always reset the signal alarm in tests (GH-3588) (GH-7312)Victor Stinner2018-06-011-0/+3
* [3.6] bpo-32964: Reuse a testing implementation of the path protocol in tests...Serhiy Storchaka2018-03-031-11/+14
* [3.6] bpo-32228: Reset raw_pos after unwinding the raw stream (GH-4858) (#5389)Antoine Pitrou2018-01-281-0/+17
* [3.6] bpo-32297: Fix misspellings in Python source code comments (GH-4803) (#...Andrew Svetlov2017-12-141-2/+2
* bpo-22671: Clarify and test default read method implementations (GH-4568) (#4...Miss Islington (bot)2017-12-111-2/+51
* [3.6] bpo-31243: Fixed PyArg_ParseTuple failure checks. (GH-3171) (#3233)Oren Milman2017-08-291-0/+20
* [3.6] bpo-31271: Fix an assertion failure in io.TextIOWrapper.write. (GH-3201...Oren Milman2017-08-261-0/+8
* [3.6] bpo-28261: Prevent raising SystemError where PyArg_ParseTuple is used t...Oren Milman2017-08-261-0/+1
* bpo-30107: don't dump core on expected test_io crash (#1235) (#1241)Victor Stinner2017-04-211-0/+5
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096...Serhiy Storchaka2017-04-191-0/+16
* bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese...Xiang Zhang2017-04-151-0/+1
* bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#5...Serhiy Storchaka2017-03-191-0/+20
* Issue #26926: Skip some test_io tests on platforms without large file supportXavier de Gaye2016-11-171-1/+4
* Use sequence repetition instead of bytes constructor with integer argument.Serhiy Storchaka2016-09-111-1/+1
* Fixes expected error when getting encoding while shutting down.Steve Dower2016-09-091-1/+1
* Fix expected error message in PyTextIOWrapperTestSteve Dower2016-09-081-1/+1
* Issue #27959: Prevent ImportError from escaping codec search functionSteve Dower2016-09-071-2/+1
* new and exciting shutdown error on windowsBenjamin Peterson2016-09-071-1/+2
* Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-031-0/+2
|\
| * Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-031-0/+2
* | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the returnBrett Cannon2016-06-241-1/+1
* | Issue #27066: Fixed SystemError if a custom opener (for open()) returns aBarry Warsaw2016-06-081-0/+16
|\ \ | |/
| * Issue #27066: Fixed SystemError if a custom opener (for open()) returnsBarry Warsaw2016-06-081-0/+16
* | issue27186: add open/io.open; patch by Jelle ZijlstraEthan Furman2016-06-041-0/+26
* | Issue #20699: Merge io bytes-like fixes from 3.5Martin Panter2016-05-281-14/+64
|\ \ | |/
| * Issue #20699: Document that “io” methods accept bytes-like objectsMartin Panter2016-05-281-14/+64
* | Issue #22854: Merge test fix from 3.5Martin Panter2016-03-311-1/+1
|\ \ | |/
| * Issue #22854: Fix logic for skipping testMartin Panter2016-03-311-1/+1
* | Issue #22854: Merge Windows pipe skipping from 3.5Martin Panter2016-03-311-7/+7
|\ \ | |/
| * Issue #22854: Skip pipe seek tests on WindowsMartin Panter2016-03-311-2/+7
* | Issue #22854: Skip pipe seekable() tests on WindowsMartin Panter2016-03-311-1/+6
* | Issue #22854: Merge UnsupportedOperation fixes from 3.5Martin Panter2016-03-311-11/+105
|\ \ | |/
| * Issue #22854: Clarify documentation about UnsupportedOperation and add testsMartin Panter2016-03-311-11/+105
* | test_io: ignore DeprecationWarning on bytes path on WindowsVictor Stinner2016-03-251-1/+5
* | Issue #26637: Fix test_ioVictor Stinner2016-03-251-2/+1
|/
* Issue #26325: Added test.support.check_no_resource_warning() to check thatSerhiy Storchaka2016-02-111-9/+3
* Issue #25523: Merge a-to-an corrections from 3.4.Serhiy Storchaka2015-11-021-1/+1
|\
| * 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 #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 #9858: Add missing method stubs to _io.RawIOBase. Patch by Laura Ruppr...Antoine Pitrou2015-05-201-2/+2
* | Issue #23796: peak and read1 methods of BufferedReader now raise ValueErrorBerker Peksag2015-05-121-0/+8
* | Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-1/+1