summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-134908: Protect `textiowrapper_iternext` with critical section (gh-...Sam Gross2025-06-021-0/+31
* [3.13] gh-133982: Run unclosed file test on all io implementations (gh-134165...Miss Islington (bot)2025-05-211-2/+2
* [3.13] gh-71253: Match _io exception in _pyio (gh-133985) (gh-134431)Miss Islington (bot)2025-05-211-2/+2
* [3.13] gh-122559: Synchronize C and Python implementation of the io module ab...Serhiy Storchaka2025-05-041-0/+44
* [3.13] gh-117174: Add a new route in linecache to fetch interactive source co...Miss Islington (bot)2025-03-101-2/+2
* [3.13] gh-127182: Fix `io.StringIO.__setstate__` crash when `None` is the fir...Miss Islington (bot)2024-11-251-0/+15
* [3.13] Bump Ruff to 0.6.7 (#124384) (#124389)Alex Waygood2024-09-301-2/+0
* [3.13] gh-119506: fix `_io.TextIOWrapper.write()` write during flush (GH-1195...Miss Islington (bot)2024-06-191-0/+22
* gh-117755: Remove tests on huge memory allocations (#117938)Victor Stinner2024-04-161-50/+1
* gh-117755: Skip test_io.test_constructor() on s390x (#117801)Victor Stinner2024-04-151-1/+11
* gh-115775: Compiler adds __static_attributes__ field to classes (#115913)Irit Katriel2024-03-261-1/+1
* gh-95782: Fix io.BufferedReader.tell() etc. being able to return offsets < 0 ...6t8k2024-02-171-1/+46
* gh-115059: Remove debugging code in test_io (GH-115240)Serhiy Storchaka2024-02-101-30/+0
* gh-115059: Flush the underlying write buffer in io.BufferedRandom.read1() (GH...Serhiy Storchaka2024-02-091-0/+52
* gh-114099: Add test exclusions to support running the test suite on iOS (#114...Russell Keith-Magee2024-02-051-9/+7
* gh-112529: Implement GC for free-threaded builds (#114262)Sam Gross2024-01-251-3/+1
* gh-66060: Use actual class name in _io type's __repr__ (#30824)AN Long2024-01-091-0/+7
* gh-80109: Fix io.TextIOWrapper dropping the internal buffer during write() (G...Zackery Spytz2024-01-081-0/+8
* gh-112536: Add support for thread sanitizer (TSAN) (gh-112648)Samet YASLAN2023-12-301-3/+6
* 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