summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* gh-111800: Fix `test_recursive_repr` from `test_io` under WASI to not recurse...Nikita Sobolev2023-11-161-8/+4
* gh-111942: Fix SystemError in the TextIOWrapper constructor (#112061)Serhiy Storchaka2023-11-141-3/+1
* gh-111942: Fix crashes in TextIOWrapper.reconfigure() (GH-111976)Serhiy Storchaka2023-11-141-2/+84
* gh-111356: io: Add missing documented objects to io.__all__ (#111370)Nicolas Tessore2023-11-101-10/+14
* gh-67224: Show source lines in tracebacks when using the -c option when runni...Pablo Galindo Salgado2023-10-261-2/+2
* gh-108416: Mark slow but not CPU bound test methods with requires_resource('w...Serhiy Storchaka2023-09-051-0/+6
* Reorder some test's decorators (GH-108804)Serhiy Storchaka2023-09-031-2/+2
* gh-62948: IOBase finalizer logs close() errors (#105104)Victor Stinner2023-05-311-12/+2
* gh-101819: Isolate `_io` (#101948)Erlend E. Aasland2023-05-151-2/+5
* gh-101819: Adapt _io types to heap types, batch 1 (GH-101949)Erlend E. Aasland2023-02-201-1/+90
* bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults (#18640)Zackery Spytz2022-11-281-1/+9
* bpo-38031: Fix a possible assertion failure in _io.FileIO() (#GH-5688)Zackery Spytz2022-11-251-0/+8
* gh-98999: Raise `ValueError` in `_pyio` on closed buffers (gh-99009)Nikita Sobolev2022-11-031-12/+26
* gh-94169: Remove deprecated io.OpenWrapper (#94170)Victor Stinner2022-06-241-8/+0
* gh-69443: Add test.support.Py_DEBUG constant (#93226)Victor Stinner2022-05-251-1/+1
* gh-93099: Fix _pyio to use locale module properly (gh-93136)Dong-hee Na2022-05-241-0/+4
* gh-90473: WASI: Mark tests that require os.pipe() (GH-92837)Christian Heimes2022-05-161-0/+7
* gh-91156: Use `locale.getencoding()` instead of getpreferredencoding (GH-91732)Inada Naoki2022-04-221-1/+1
* gh-91526: io: Remove device encoding support from TextIOWrapper (GH-91529)Inada Naoki2022-04-191-12/+0
* gh-91156: Fix `encoding="locale"` in UTF-8 mode (GH-70056)Inada Naoki2022-04-141-0/+1
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-071-0/+6
* bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)Inada Naoki2022-04-041-0/+11
* bpo-40280: Skip dysfunctional pipe tests on Emscripten (GH-31770)Christian Heimes2022-03-081-0/+12
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-051-0/+13
* Refactor sanitiser skip tests into test.support (GH-30889)Pablo Galindo Salgado2022-01-251-18/+7
* bpo-45196: prevent unittest crash on address sanitizer builds (GH-28331)junyixie2021-09-141-3/+7
* bpo-5846: Do not use obsolete unittest functions. (GH-28303)Serhiy Storchaka2021-09-131-2/+4
* bpo-37330: open() no longer accept 'U' in file mode (GH-28118)Victor Stinner2021-09-021-10/+7
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-291-0/+25
* bpo-43680: Deprecate io.OpenWrapper (GH-25357)Victor Stinner2021-04-141-2/+8
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189)Inada Naoki2021-04-061-3/+3
* bpo-43651: Fix EncodingWarning in test_io (GH-25097)Inada Naoki2021-04-011-67/+78
* Revert "bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-251...Inada Naoki2021-03-311-11/+0
* bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-25103)Inada Naoki2021-03-311-0/+11
* bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki2021-03-291-0/+23
* bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)Inada Naoki2021-02-211-0/+27
* bpo-41919: Avoid resource leak in test_io (GH-22973)Hai Shi2020-10-251-12/+13
* bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)Hai Shi2020-10-161-4/+3
* bpo-41401: Fix test_fspath_support in test_io. (GH-21640)Serhiy Storchaka2020-07-271-1/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-21314)Hai Shi2020-07-061-127/+130
* closes bpo-28557: error message for bad raw readinto (GH-7496)David Szotten2020-06-151-0/+16
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-271-3/+4
* bpo-39882: Py_FatalError() logs the function name (GH-18819)Victor Stinner2020-03-061-1/+2
* bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16...Victor Stinner2020-03-041-7/+10
* bpo-35950: Raise UnsupportedOperation in BufferedReader.truncate() (GH-18586)Berker Peksag2020-02-211-0/+11
* closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295)Philipp Gesang2020-02-041-0/+5
* bpo-38076 Clear the interpreter state only after clearing module globals (GH-...Eddie Elizondo2020-02-041-1/+1
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-031-2/+0
* closes bpo-27805: Ignore ESPIPE in initializing seek of append-mode files. (G...Benjamin Peterson2019-11-121-0/+11
* bpo-37330: open() no longer accept 'U' in file mode (GH-16959)Victor Stinner2019-10-281-10/+7