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
/
Modules
/
_io
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.11] gh-80109: Fix io.TextIOWrapper dropping the internal buffer during wri...
Miss Islington (bot)
2024-01-08
1
-4/+8
*
[3.11] gh-111942: Fix crashes in TextIOWrapper.reconfigure() (GH-111976) (GH-...
Miss Islington (bot)
2023-11-15
1
-4/+46
*
[3.11] gh-111174: Fix crash in getbuffer() called repeatedly for empty BytesI...
Miss Islington (bot)
2023-10-25
1
-3/+4
*
gh-110913: Fix WindowsConsoleIO chunking of UTF-8 text (GH-111007)
Miss Islington (bot)
2023-10-20
1
-16/+20
*
[3.11] gh-107801: Improve the accuracy of io.IOBase.seek docs (#108268) (#108...
Erlend E. Aasland
2023-08-29
1
-7/+14
*
[3.11] gh-107801: Document io.TextIOWrapper.tell (#108265) (#108548)
Erlend E. Aasland
2023-08-27
2
-3/+12
*
[3.11] gh-107913: Fix possible losses of OSError error codes (GH-107930) (GH-...
Serhiy Storchaka
2023-08-27
2
-7/+7
*
[3.11] Trim trailing whitespace and test on CI (GH-104275) (#108215)
Hugo van Kemenade
2023-08-22
1
-2/+2
*
[3.11] gh-102507 Remove invisible pagebreak characters (GH-102531) (#108266)
Miss Islington (bot)
2023-08-22
1
-3/+0
*
[3.11] gh-107801: Improve the accuracy of io.TextIOWrapper.seek docs (#107933...
Erlend E. Aasland
2023-08-22
2
-5/+39
*
gh-82052: Don't send partial UTF-8 sequences to the Windows API (GH-101103)
Miss Islington (bot)
2023-01-17
1
-1/+16
*
[3.11] bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults...
Kumar Aditya
2022-11-28
1
-10/+20
*
bpo-38031: Fix a possible assertion failure in _io.FileIO() (GH-GH-5688)
Miss Islington (bot)
2022-11-25
1
-1/+5
*
gh-83004: Clean up refleak in _io initialisation (GH-98840)
Miss Islington (bot)
2022-11-06
1
-3/+3
*
GH-90699: fix ref counting of static immortal strings (gh-94850)
Miss Islington (bot)
2022-07-20
1
-1/+1
*
GH-94857: fix test_io refleak (GH-94858)
Miss Islington (bot)
2022-07-18
1
-1/+6
*
Fix typo in _io.TextIOWrapper Clinic input (GH-94037) (GH-94116)
Miss Islington (bot)
2022-06-22
1
-2/+2
*
gh-84461: Silence some compiler warnings on WASM (GH-93978)
Miss Islington (bot)
2022-06-20
1
-1/+1
*
gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)
Victor Stinner
2022-05-03
8
-40/+40
*
gh-91952: Make TextIOWrapper.reconfigure() supports "locale" encoding (GH-91982)
Inada Naoki
2022-05-01
1
-2/+10
*
bpo-46712: share more global strings in deepfreeze (gh-32152)
Kumar Aditya
2022-04-19
1
-0/+1
*
gh-91526: io: Remove device encoding support from TextIOWrapper (GH-91529)
Inada Naoki
2022-04-19
1
-50/+6
*
gh-91156: Fix `encoding="locale"` in UTF-8 mode (GH-70056)
Inada Naoki
2022-04-14
4
-15/+23
*
bpo-47000: Add `locale.getencoding()` (GH-32068)
Inada Naoki
2022-04-09
1
-1/+7
*
bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)
Inada Naoki
2022-04-04
2
-7/+16
*
bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)
slateny
2022-03-04
2
-3/+2
*
bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...
Eric Snow
2022-02-23
6
-211/+69
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
6
-160/+102
*
bpo-46417: Clear _io module static objects at exit (GH-30807)
Victor Stinner
2022-01-22
1
-44/+93
*
Remove unused variables. (GH-29231)
Benjamin Peterson
2021-10-26
1
-5/+1
*
bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)
Victor Stinner
2021-10-13
2
-2/+4
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-0/+1
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-1/+1
*
bpo-44687: Ensure BufferedReader objects with unread buffers can peek even wh...
AngstyDuck
2021-10-01
1
-3/+5
*
bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...
Serhiy Storchaka
2021-09-12
1
-2/+3
*
bpo-45094: Add Py_NO_INLINE macro (GH-28140)
Victor Stinner
2021-09-03
1
-1/+1
*
bpo-37330: open() no longer accept 'U' in file mode (GH-28118)
Victor Stinner
2021-09-02
2
-29/+3
*
bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...
Segev Finer
2021-04-23
2
-73/+73
*
bpo-43510: Fix emitting EncodingWarning from _io module. (GH-25146)
Inada Naoki
2021-04-02
2
-13/+17
*
Revert "bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-251...
Inada Naoki
2021-03-31
1
-2/+1
*
bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-25103)
Inada Naoki
2021-03-31
1
-1/+2
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
3
-1/+99
*
bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)
Inada Naoki
2021-02-21
1
-3/+17
*
bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083)
Victor Stinner
2020-11-01
1
-1/+1
*
bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050)
Victor Stinner
2020-10-31
3
-48/+4
*
bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998)
Victor Stinner
2020-10-27
2
-8/+12
*
bpo-40170: Use inline _PyType_HasFeature() function (GH-22375)
Victor Stinner
2020-09-23
1
-1/+2
*
bpo-36346: Make using the legacy Unicode C API optional (GH-21437)
Serhiy Storchaka
2020-07-10
1
-0/+12
*
closes bpo-28557: error message for bad raw readinto (GH-7496)
David Szotten
2020-06-15
1
-0/+9
*
bpo-40898: Remove redundant if statements in tp_traverse (GH-20692)
Hai Shi
2020-06-07
1
-3/+1
[next]