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
/
_iomodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-116322: Add Py_mod_gil module slot (#116882)
Brett Simmers
2024-05-03
1
-0/+1
*
gh-106320: Remove private _PyLong_Sign() (#108743)
Victor Stinner
2023-09-01
1
-0/+1
*
gh-106320: Remove private _PyErr_ChainExceptions() (#108713)
Victor Stinner
2023-08-31
1
-0/+1
*
gh-106320: Remove private AC converter functions (#108505)
Victor Stinner
2023-08-26
1
-0/+1
*
gh-106320: Remove private PyLong C API functions (#108429)
Victor Stinner
2023-08-24
1
-2/+3
*
gh-104922: remove PY_SSIZE_T_CLEAN (#106315)
Inada Naoki
2023-07-02
1
-1/+0
*
gh-101819: Isolate `_io` (#101948)
Erlend E. Aasland
2023-05-15
1
-97/+41
*
gh-101819: Prepare _io._IOBase for module state (#104386)
Erlend E. Aasland
2023-05-12
1
-0/+3
*
gh-101819: Clean up _io windows console io after gh-104197 (#104354)
Erlend E. Aasland
2023-05-10
1
-1/+1
*
gh-101819: Harden _io init (#104352)
Erlend E. Aasland
2023-05-10
1
-3/+4
*
gh-101819: Port _io.PyBytesIOBuffer_Type to heap type (#104264)
Erlend E. Aasland
2023-05-07
1
-4/+1
*
gh-101819: Adapt _io.PyWindowsConsoleIO_Type to heap type (#104197)
Erlend E. Aasland
2023-05-07
1
-11/+11
*
gh-101819: Port _io.PyIncrementalNewlineDecoder_Type to heap type (#104249)
Erlend E. Aasland
2023-05-07
1
-2/+1
*
gh-101819: Remove unused 'locale_module' from _io state (#104246)
Erlend E. Aasland
2023-05-06
1
-3/+0
*
gh-101819: Prepare to modernize the _io extension (#104178)
Victor Stinner
2023-05-05
1
-8/+27
*
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
1
-3/+3
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-02-24
1
-4/+3
*
gh-101819: Adapt _io types to heap types, batch 1 (GH-101949)
Erlend E. Aasland
2023-02-20
1
-37/+62
*
gh-101819: Remove _testcapi dependencies on specific _io symbols (#101918)
Erlend E. Aasland
2023-02-15
1
-10/+2
*
gh-101469: Optimise get_io_state() by using _PyModule_GetState() (GH-101470)
Erlend E. Aasland
2023-01-31
1
-1/+2
*
bpo-15999: Accept arbitrary values for boolean parameters. (#15609)
Serhiy Storchaka
2022-12-03
1
-8/+7
*
gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)
Victor Stinner
2022-11-23
1
-2/+1
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99467)
Victor Stinner
2022-11-14
1
-6/+3
*
gh-83004: Clean up refleak in _io initialisation (#98840)
Shantanu
2022-11-03
1
-3/+3
*
gh-91156: Fix `encoding="locale"` in UTF-8 mode (GH-70056)
Inada Naoki
2022-04-14
1
-4/+4
*
bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)
Inada Naoki
2022-04-04
1
-4/+12
*
bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...
Eric Snow
2022-02-23
1
-113/+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-9/+4
*
bpo-46417: Clear _io module static objects at exit (GH-30807)
Victor Stinner
2022-01-22
1
-44/+93
*
bpo-37330: open() no longer accept 'U' in file mode (GH-28118)
Victor Stinner
2021-09-02
1
-23/+2
*
bpo-43510: Fix emitting EncodingWarning from _io module. (GH-25146)
Inada Naoki
2021-04-02
1
-2/+4
*
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
1
-0/+41
*
bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050)
Victor Stinner
2020-10-31
1
-25/+0
*
bpo-40898: Remove redundant if statements in tp_traverse (GH-20692)
Hai Shi
2020-06-07
1
-3/+1
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-1/+1
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+0
*
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner
2020-04-13
1
-2/+1
*
bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)
Dong-hee Na
2020-03-24
1
-20/+16
*
bpo-39968: Convert extension modules' macros of get_module_state() to inline ...
Hai Shi
2020-03-16
1
-4/+11
*
bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16...
Victor Stinner
2020-03-04
1
-2/+23
*
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Victor Stinner
2020-02-07
1
-1/+1
*
Revert "remove a strange non-ASCII character in _iomodule.c" (GH-17240)
Tal Einat
2019-11-18
1
-1/+1
*
remove a strange non-ASCII character in _iomodule.c (GH-17239)
Tal Einat
2019-11-18
1
-1/+1
*
bpo-37330: open() no longer accept 'U' in file mode (GH-16959)
Victor Stinner
2019-10-28
1
-23/+2
[next]