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
*
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
*
bpo-37388: Development mode check encoding and errors (GH-14341)
Victor Stinner
2019-06-25
1
-1/+48
*
bpo-37261: Document sys.unraisablehook corner cases (GH-14059)
Victor Stinner
2019-06-14
1
-1/+5
*
bpo-37223, test_io: silence last 'Exception ignored in:' (GH-14029)
Victor Stinner
2019-06-12
1
-0/+5
*
bpo-37223: test_io: silence destructor errors (GH-13954)
Victor Stinner
2019-06-11
1
-0/+10
*
bpo-36829: Document test.support.catch_unraisable_exception() (GH-13554)
Victor Stinner
2019-05-24
1
-14/+6
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-1/+1
*
bpo-18748: _pyio.IOBase emits unraisable exception (GH-13512)
Victor Stinner
2019-05-23
1
-37/+27
*
bpo-36929: Modify io/re tests to allow for missing mod name (#13392)
Max Bernstein
2019-05-21
1
-17/+17
*
bpo-18748: test_io: silence destructor errors (GH-12805)
Victor Stinner
2019-04-12
1
-0/+29
*
bpo-18748: io.IOBase destructor now logs close() errors in dev mode (GH-12786)
Victor Stinner
2019-04-12
1
-6/+25
*
bpo-35214: Skip test_io tests that'd cause a huge malloc under msan (#11385)
Gregory P. Smith
2018-12-31
1
-0/+14
*
bpo-31731: Fix test_io.check_interrupted_write() (GH-11225)
Victor Stinner
2018-12-18
1
-3/+9
*
bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...
Zackery Spytz
2018-12-17
1
-0/+5
*
bpo-33578: Add getstate/setstate for CJK codec (GH-6984)
Christopher Thorne
2018-11-01
1
-0/+28
*
bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...
Xiang Zhang
2018-10-31
1
-0/+10
*
bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842)
Alexey Izbyshev
2018-10-20
1
-1/+1
*
bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exce...
Zackery Spytz
2018-07-17
1
-0/+10
*
bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)
Zackery Spytz
2018-06-29
1
-0/+11
*
Revert "bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)" (GH-7919)
Victor Stinner
2018-06-26
1
-1/+1
*
bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)
Victor Stinner
2018-06-22
1
-1/+1
*
bpo-33760: Fix file leaks in test_io. (GH-7361)
Serhiy Storchaka
2018-06-04
1
-0/+4
*
bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930)
Serhiy Storchaka
2018-03-02
1
-11/+14
*
bpo-32228: Reset raw_pos after unwinding the raw stream (#4858)
Nitish Chandra
2018-01-28
1
-0/+17
[next]