index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_io.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-111800: Fix `test_recursive_repr` from `test_io` under WASI to not recurse...
Nikita Sobolev
2023-11-16
1
-8/+4
*
gh-111942: Fix SystemError in the TextIOWrapper constructor (#112061)
Serhiy Storchaka
2023-11-14
1
-3/+1
*
gh-111942: Fix crashes in TextIOWrapper.reconfigure() (GH-111976)
Serhiy Storchaka
2023-11-14
1
-2/+84
*
gh-111356: io: Add missing documented objects to io.__all__ (#111370)
Nicolas Tessore
2023-11-10
1
-10/+14
*
gh-67224: Show source lines in tracebacks when using the -c option when runni...
Pablo Galindo Salgado
2023-10-26
1
-2/+2
*
gh-108416: Mark slow but not CPU bound test methods with requires_resource('w...
Serhiy Storchaka
2023-09-05
1
-0/+6
*
Reorder some test's decorators (GH-108804)
Serhiy Storchaka
2023-09-03
1
-2/+2
*
gh-62948: IOBase finalizer logs close() errors (#105104)
Victor Stinner
2023-05-31
1
-12/+2
*
gh-101819: Isolate `_io` (#101948)
Erlend E. Aasland
2023-05-15
1
-2/+5
*
gh-101819: Adapt _io types to heap types, batch 1 (GH-101949)
Erlend E. Aasland
2023-02-20
1
-1/+90
*
bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults (#18640)
Zackery Spytz
2022-11-28
1
-1/+9
*
bpo-38031: Fix a possible assertion failure in _io.FileIO() (#GH-5688)
Zackery Spytz
2022-11-25
1
-0/+8
*
gh-98999: Raise `ValueError` in `_pyio` on closed buffers (gh-99009)
Nikita Sobolev
2022-11-03
1
-12/+26
*
gh-94169: Remove deprecated io.OpenWrapper (#94170)
Victor Stinner
2022-06-24
1
-8/+0
*
gh-69443: Add test.support.Py_DEBUG constant (#93226)
Victor Stinner
2022-05-25
1
-1/+1
*
gh-93099: Fix _pyio to use locale module properly (gh-93136)
Dong-hee Na
2022-05-24
1
-0/+4
*
gh-90473: WASI: Mark tests that require os.pipe() (GH-92837)
Christian Heimes
2022-05-16
1
-0/+7
*
gh-91156: Use `locale.getencoding()` instead of getpreferredencoding (GH-91732)
Inada Naoki
2022-04-22
1
-1/+1
*
gh-91526: io: Remove device encoding support from TextIOWrapper (GH-91529)
Inada Naoki
2022-04-19
1
-12/+0
*
gh-91156: Fix `encoding="locale"` in UTF-8 mode (GH-70056)
Inada Naoki
2022-04-14
1
-0/+1
*
bpo-40280: Detect missing threading on WASM platforms (GH-32352)
Christian Heimes
2022-04-07
1
-0/+6
*
bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)
Inada Naoki
2022-04-04
1
-0/+11
*
bpo-40280: Skip dysfunctional pipe tests on Emscripten (GH-31770)
Christian Heimes
2022-03-08
1
-0/+12
*
bpo-40280: Address more test failures on Emscripten (GH-31050)
Christian Heimes
2022-02-05
1
-0/+13
*
Refactor sanitiser skip tests into test.support (GH-30889)
Pablo Galindo Salgado
2022-01-25
1
-18/+7
*
bpo-45196: prevent unittest crash on address sanitizer builds (GH-28331)
junyixie
2021-09-14
1
-3/+7
*
bpo-5846: Do not use obsolete unittest functions. (GH-28303)
Serhiy Storchaka
2021-09-13
1
-2/+4
*
bpo-37330: open() no longer accept 'U' in file mode (GH-28118)
Victor Stinner
2021-09-02
1
-10/+7
*
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Serhiy Storchaka
2021-08-29
1
-0/+25
*
bpo-43680: Deprecate io.OpenWrapper (GH-25357)
Victor Stinner
2021-04-14
1
-2/+8
*
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189)
Inada Naoki
2021-04-06
1
-3/+3
*
bpo-43651: Fix EncodingWarning in test_io (GH-25097)
Inada Naoki
2021-04-01
1
-67/+78
*
Revert "bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-251...
Inada Naoki
2021-03-31
1
-11/+0
*
bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-25103)
Inada Naoki
2021-03-31
1
-0/+11
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
1
-0/+23
*
bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)
Inada Naoki
2021-02-21
1
-0/+27
*
bpo-41919: Avoid resource leak in test_io (GH-22973)
Hai Shi
2020-10-25
1
-12/+13
*
bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)
Hai Shi
2020-10-16
1
-4/+3
*
bpo-41401: Fix test_fspath_support in test_io. (GH-21640)
Serhiy Storchaka
2020-07-27
1
-1/+1
*
bpo-40275: Use new test.support helper submodules in tests (GH-21314)
Hai Shi
2020-07-06
1
-127/+130
*
closes bpo-28557: error message for bad raw readinto (GH-7496)
David Szotten
2020-06-15
1
-0/+16
*
bpo-40275: Adding threading_helper submodule in test.support (GH-20263)
Hai Shi
2020-05-27
1
-3/+4
*
bpo-39882: Py_FatalError() logs the function name (GH-18819)
Victor Stinner
2020-03-06
1
-1/+2
*
bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16...
Victor Stinner
2020-03-04
1
-7/+10
*
bpo-35950: Raise UnsupportedOperation in BufferedReader.truncate() (GH-18586)
Berker Peksag
2020-02-21
1
-0/+11
*
closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295)
Philipp Gesang
2020-02-04
1
-0/+5
*
bpo-38076 Clear the interpreter state only after clearing module globals (GH-...
Eddie Elizondo
2020-02-04
1
-1/+1
*
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner
2020-02-03
1
-2/+0
*
closes bpo-27805: Ignore ESPIPE in initializing seek of append-mode files. (G...
Benjamin Peterson
2019-11-12
1
-0/+11
*
bpo-37330: open() no longer accept 'U' in file mode (GH-16959)
Victor Stinner
2019-10-28
1
-10/+7
[next]