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
*
gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...
Eric Snow
2023-05-02
1
-6/+2
*
gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)
Eric Snow
2023-04-27
1
-6/+4
*
gh-103617: Fix compiler warning in _iomodule.c (#103618)
Erlend E. Aasland
2023-04-19
1
-2/+3
*
gh-94673: Isolate the _io module to Each Interpreter (gh-102663)
Eric Snow
2023-03-21
1
-8/+32
*
gh-102255: Improve build support for Windows API partitions (GH-102256)
Max Bachmann
2023-03-09
5
-29/+33
*
gh-102507 Remove invisible pagebreak characters (#102531)
JosephSBoyle
2023-03-08
1
-3/+0
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-02-24
6
-71/+77
*
gh-101819: Adapt _io types to heap types, batch 1 (GH-101949)
Erlend E. Aasland
2023-02-20
8
-469/+373
*
gh-101819: Remove _PyWindowsConsoleIO_Type from the Windows DLL (GH-101904)
Erlend E. Aasland
2023-02-15
2
-7/+1
*
gh-101819: Remove _testcapi dependencies on specific _io symbols (#101918)
Erlend E. Aasland
2023-02-15
1
-10/+2
*
GH-101228: Fix typo in docstring for read method of `_io.TextIOWrapper` class...
Partha P. Mukherjee
2023-02-09
1
-3/+3
*
gh-101409: Improve generated clinic code for self type checks (#101411)
Erlend E. Aasland
2023-01-31
1
-3/+4
*
gh-101469: Optimise get_io_state() by using _PyModule_GetState() (GH-101470)
Erlend E. Aasland
2023-01-31
1
-1/+2
*
gh-82052: Don't send partial UTF-8 sequences to the Windows API (GH-101103)
Paul Moore
2023-01-17
1
-1/+16
*
gh-81057: Move More Globals to _PyRuntimeState (gh-100092)
Eric Snow
2022-12-07
1
-12/+12
*
bpo-15999: Accept arbitrary values for boolean parameters. (#15609)
Serhiy Storchaka
2022-12-03
8
-37/+36
*
gh-99845: Use size_t type in __sizeof__() methods (#99846)
Victor Stinner
2022-11-30
2
-12/+9
*
bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults (#18640)
Zackery Spytz
2022-11-28
1
-8/+20
*
bpo-38031: Fix a possible assertion failure in _io.FileIO() (#GH-5688)
Zackery Spytz
2022-11-25
1
-1/+5
*
gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)
Victor Stinner
2022-11-23
1
-2/+1
*
gh-99537: Use Py_SETREF() function in C code (#99656)
Victor Stinner
2022-11-22
2
-8/+4
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99467)
Victor Stinner
2022-11-14
6
-59/+30
*
gh-83004: Clean up refleak in _io initialisation (#98840)
Shantanu
2022-11-03
1
-3/+3
*
gh-90928: Improve static initialization of keywords tuple in AC (#95907)
Erlend E. Aasland
2022-08-13
7
-228/+98
*
gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...
Eric Snow
2022-08-11
8
-21/+498
*
gh-95005: Replace PyAccu with PyUnicodeWriter (gh-95006)
Aivars KalvÄns
2022-07-27
1
-14/+15
*
GH-90699: fix ref counting of static immortal strings (gh-94850)
Kumar Aditya
2022-07-20
1
-1/+1
*
GH-94857: fix test_io refleak (GH-94858)
Kumar Aditya
2022-07-18
1
-1/+6
*
Fix typo in _io.TextIOWrapper Clinic input (#94037)
fikotta
2022-06-22
1
-2/+2
*
gh-84461: Silence some compiler warnings on WASM (GH-93978)
Christian Heimes
2022-06-20
1
-1/+1
*
gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)
Inada Naoki
2022-05-12
1
-9/+0
*
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
[next]