summaryrefslogtreecommitdiff
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* 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-261-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-221-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-281-3/+4
* bpo-39882: Py_FatalError() logs the function name (GH-18819)Victor Stinner2020-03-071-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
* bpo-37388: Development mode check encoding and errors (GH-14341)Victor Stinner2019-06-261-1/+48
* bpo-37261: Document sys.unraisablehook corner cases (GH-14059)Victor Stinner2019-06-141-1/+5
* bpo-37223, test_io: silence last 'Exception ignored in:' (GH-14029)Victor Stinner2019-06-121-0/+5
* bpo-37223: test_io: silence destructor errors (GH-13954)Victor Stinner2019-06-111-0/+10
* bpo-36829: Document test.support.catch_unraisable_exception() (GH-13554)Victor Stinner2019-05-251-14/+6
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-1/+1
* bpo-18748: _pyio.IOBase emits unraisable exception (GH-13512)Victor Stinner2019-05-231-37/+27
* bpo-36929: Modify io/re tests to allow for missing mod name (#13392)Max Bernstein2019-05-211-17/+17