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
/
_pyio.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-129005: Remove copies from _pyio using take_bytes (#141539)
Cody Maloney
2025-11-18
1
-4/+4
*
gh-140607: Validate returned byte count in RawIOBase.read (#140611)
Cody Maloney
2025-10-27
1
-0/+2
*
gh-69528: Distinguish between file modes "wb+" and "rb+" (GH-137834)
Stan Ulbrych
2025-10-21
1
-1/+6
*
gh-133982: Test _pyio.BytesIO in free-threaded tests (gh-136218)
Cody Maloney
2025-07-04
1
-30/+50
*
gh-62184: Remove _pyio import of _io.FileIO (gh-134192)
Cody Maloney
2025-05-21
1
-2/+0
*
gh-133982: Run unclosed file test on all io implementations (gh-134165)
Cody Maloney
2025-05-21
1
-4/+14
*
gh-71253: Match _io exception in _pyio (gh-133985)
Cody Maloney
2025-05-21
1
-1/+2
*
gh-133036: Deprecate codecs.open (#133038)
Inada Naoki
2025-04-30
1
-2/+1
*
gh-117151: IO performance improvement, increase io.DEFAULT_BUFFER_SIZE to 128...
morotti
2025-03-07
1
-7/+8
*
gh-129011: Update comments in FileIO to match current code (#129012)
Cody Maloney
2025-03-07
1
-3/+14
*
gh-127647: Add typing.Reader and Writer protocols (#127648)
Sebastian Rittau
2025-03-06
1
-1/+1
*
gh-129005: Align FileIO.readall between _pyio and _io (#129705)
Cody Maloney
2025-02-07
1
-14/+23
*
gh-129005: Update _pyio.BytesIO to use bytearray.resize on write (#129702)
Cody Maloney
2025-02-06
1
-4/+2
*
Revert "gh-129005: Align FileIO.readall() allocation (#129458)" (#129572)
Cody Maloney
2025-02-02
1
-18/+9
*
Revert "gh-129005: _pyio.BufferedIO remove copy on readall (#129454)" (#129500)
Cody Maloney
2025-01-31
1
-3/+0
*
gh-129005: _pyio.BufferedIO remove copy on readall (#129454)
Cody Maloney
2025-01-30
1
-0/+3
*
gh-129005: Align FileIO.readall() allocation (#129458)
Cody Maloney
2025-01-30
1
-9/+18
*
gh-129005: Avoid copy in _pyio.FileIO.readinto() (#129324)
Cody Maloney
2025-01-28
1
-6/+7
*
gh-109523: Raise a BlockingIOError if reading text from a non-blocking stream...
Giovanni Siragusa
2024-12-02
1
-1/+4
*
gh-120754: _io Ensure stat cache is cleared on fd change (#125166)
Cody Maloney
2024-11-01
1
-0/+3
*
gh-90102: Fix pyio _isatty_open_only() (#125089)
Cody Maloney
2024-10-08
1
-1/+1
*
gh-90102: Remove isatty call during regular open (#124922)
Cody Maloney
2024-10-08
1
-1/+16
*
gh-120754: Refactor I/O modules to stash whole stat result rather than indivi...
Cody Maloney
2024-09-18
1
-20/+24
*
gh-120754: Reduce system calls in full-file FileIO.readall() case (#120755)
Cody Maloney
2024-07-04
1
-8/+14
*
gh-120417: Add #noqa to used imports in the stdlib (#120421)
Victor Stinner
2024-06-13
1
-1/+1
*
gh-95782: Fix io.BufferedReader.tell() etc. being able to return offsets < 0 ...
6t8k
2024-02-17
1
-1/+2
*
gh-82626: Emit a warning when bool is used as a file descriptor (GH-111275)
Serhiy Storchaka
2024-02-05
1
-0/+5
*
gh-80109: Fix io.TextIOWrapper dropping the internal buffer during write() (G...
Zackery Spytz
2024-01-08
1
-4/+6
*
gh-62948: IOBase finalizer logs close() errors (#105104)
Victor Stinner
2023-05-31
1
-16/+4
*
bpo-45975: Simplify some while-loops with walrus operator (GH-29347)
Nick Drozd
2022-11-26
1
-4/+1
*
gh-98999: Raise `ValueError` in `_pyio` on closed buffers (gh-99009)
Nikita Sobolev
2022-11-03
1
-0/+5
*
gh-94169: Remove deprecated io.OpenWrapper (#94170)
Victor Stinner
2022-06-24
1
-16/+0
*
gh-93099: Fix _pyio to use locale module properly (gh-93136)
Dong-hee Na
2022-05-24
1
-8/+11
*
gh-91952: Make TextIOWrapper.reconfigure() supports "locale" encoding (GH-91982)
Inada Naoki
2022-05-01
1
-0/+2
*
gh-91526: io: Remove device encoding support from TextIOWrapper (GH-91529)
Inada Naoki
2022-04-19
1
-8/+0
*
gh-91156: Fix `encoding="locale"` in UTF-8 mode (GH-70056)
Inada Naoki
2022-04-14
1
-3/+5
*
bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)
Inada Naoki
2022-04-04
1
-3/+7
*
bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)
slateny
2022-03-04
1
-3/+2
*
bpo-46522: fix concurrent.futures and io AttributeError messages (GH-30887)
Thomas Grainger
2022-02-23
1
-1/+1
*
bpo-37330: open() no longer accept 'U' in file mode (GH-28118)
Victor Stinner
2021-09-02
1
-13/+1
*
bpo-43680: Deprecate io.OpenWrapper (GH-25357)
Victor Stinner
2021-04-14
1
-12/+14
*
bpo-43680: _pyio.open() becomes a static method (GH-25354)
Victor Stinner
2021-04-12
1
-11/+9
*
Revert "bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-251...
Inada Naoki
2021-03-31
1
-1/+1
*
bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-25103)
Inada Naoki
2021-03-31
1
-1/+1
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
1
-10/+37
*
bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16...
Victor Stinner
2020-03-04
1
-1/+13
*
bpo-35950: Raise UnsupportedOperation in BufferedReader.truncate() (GH-18586)
Berker Peksag
2020-02-21
1
-0/+3
*
closes bpo-27805: Ignore ESPIPE in initializing seek of append-mode files. (G...
Benjamin Peterson
2019-11-12
1
-1/+5
*
bpo-37330: open() no longer accept 'U' in file mode (GH-16959)
Victor Stinner
2019-10-28
1
-13/+1
*
bpo-15999: Clean up of handling boolean arguments. (GH-15610)
Serhiy Storchaka
2019-09-01
1
-4/+4
[next]