summaryrefslogtreecommitdiffstats
path: root/Modules/_io
Commit message (Expand)AuthorAgeFilesLines
* gh-129813, PEP 782: Use PyBytesWriter in bufferedio.c (#139121)Victor Stinner2025-09-181-15/+11
* gh-138720: Make Buffered closed check match flush (GH-138724)Cody Maloney2025-09-181-2/+2
* gh-129813, PEP 782: Use PyBytesWriter in bufferedio.c (#138954)Victor Stinner2025-09-151-21/+23
* gh-129813, PEP 782: Use PyBytesWriter in FileIO.read() (#138955)Victor Stinner2025-09-151-18/+8
* gh-129813, PEP 782: Use PyBytesWriter in _io.FileIO.readall (#138901)Cody Maloney2025-09-151-15/+11
* GH-137623: Use an AC decorator for docstring line length enforcement (#137690)Adam Turner2025-08-185-8/+16
* gh-132551: add missing critical sections on BytesIO methods (#137073)Kumar Aditya2025-07-242-11/+46
* gh-135607: remove null checking of weakref list in dealloc of extension modul...Xuanteng Huang2025-06-307-18/+15
* Revert "gh-135410: use a critical section around `StringIO.__next__` (#135412...Peter Bierma2025-06-121-11/+1
* gh-135410: use a critical section around `StringIO.__next__` (#135412)Peter Bierma2025-06-121-1/+11
* gh-134908: Protect `textiowrapper_iternext` with critical section (gh-134910)Duane Griffin2025-06-021-1/+14
* gh-131505: Move len boundary assertions before using len. (#131536)naya4512025-05-191-1/+1
* fix thread safety of `io.StringIO.truncate` (#133732)Kumar Aditya2025-05-092-14/+22
* gh-132551: make `io.BytesIO` thread safe (#132616)Tomasz Pytel2025-05-082-99/+245
* gh-122559: Synchronize C and Python implementation of the io module about pic...Serhiy Storchaka2025-05-043-10/+5
* gh-133036: Deprecate codecs.open (#133038)Inada Naoki2025-04-301-3/+2
* gh-132952: Speed up startup by importing _io instead of io (#132957)Jelle Zijlstra2025-04-281-0/+5
* gh-111178: remove redundant casts for functions with correct signatures (#131...Bénédikt Tran2025-04-012-3/+1
* gh-131525: Cache the result of tuple_hash (#131529)Michael Droettboom2025-03-277-7/+33
* Fix Windows build warnings (#131487)Victor Stinner2025-03-202-2/+1
* gh-131238: Remove more includes from pycore_interp.h (#131480)Victor Stinner2025-03-191-8/+9
* gh-111178: Fix function signatures for test_iter (#131456)Victor Stinner2025-03-191-1/+2
* GH-131238: More refactoring of core header files (GH-131351)Mark Shannon2025-03-172-0/+2
* gh-131238: Add explicit includes to pycore headers (#131257)Victor Stinner2025-03-171-1/+1
* gh-111178: Fix function signatures in misc files (#131180)Victor Stinner2025-03-131-2/+4
* gh-111178: Change Argument Clinic signature for METH_O (#130682)Victor Stinner2025-03-117-18/+71
* gh-131082: Add missing guards for WIN32_LEAN_AND_MEAN (#131044)Max Bachmann2025-03-111-1/+1
* gh-117151: IO performance improvement, increase io.DEFAULT_BUFFER_SIZE to 128...morotti2025-03-073-11/+11
* gh-129011: Update comments in FileIO to match current code (#129012)Cody Maloney2025-03-072-13/+29
* gh-130790: Remove references about unicode's readiness from comments (#130801)Sergey Miryanov2025-03-031-2/+1
* gh-111178: fix UBSan failures in `Modules/_io/*.c` (GH-129083)Bénédikt Tran2025-02-087-163/+230
* gh-129354: Use PyErr_FormatUnraisable() function (#129656)Victor Stinner2025-02-042-3/+6
* gh-119182: Use public PyUnicodeWriter in stringio.c (#129243)Victor Stinner2025-01-231-12/+21
* gh-111178: Generate correct signature for most self converters (#128447)Erlend E. Aasland2025-01-208-212/+212
* gh-128083: Fix macro redefinition warning in clinic. (GH-127950)Peter Bierma2024-12-191-1/+10
* gh-109523: Raise a BlockingIOError if reading text from a non-blocking stream...Giovanni Siragusa2024-12-021-0/+6
* gh-127341: Argument Clinic: fix compiler warnings for getters with docstrings...Peter Bierma2024-11-293-51/+21
* gh-124008: Fix calculation of the number of written bytes for the Windows con...Serhiy Storchaka2024-11-271-28/+90
* gh-127182: Fix `io.StringIO.__setstate__` crash when `None` is the first valu...sobolevn2024-11-251-14/+16
* gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564)Serhiy Storchaka2024-11-088-37/+66
* gh-120754: _io Ensure stat cache is cleared on fd change (#125166)Cody Maloney2024-11-011-5/+6
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125583)Victor Stinner2024-10-251-1/+1
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-091-1/+1
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#125195)Victor Stinner2024-10-091-1/+1
* gh-90102: Remove isatty call during regular open (#124922)Cody Maloney2024-10-083-4/+21
* gh-111178: Fix function signatures in fileio.c (#125043)Victor Stinner2024-10-071-37/+51
* gh-120754: Fix memory leak in FileIO.__init__() (#124225)Victor Stinner2024-09-181-0/+1
* gh-120754: Refactor I/O modules to stash whole stat result rather than indivi...Cody Maloney2024-09-181-26/+57
* gh-121645: Add PyBytes_Join() function (#121646)Victor Stinner2024-08-302-3/+3
* Fix typos in docs, error messages and comments (#123336)Wulian2024-08-281-1/+1