summaryrefslogtreecommitdiffstats
path: root/Modules/_io
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-135607: remove null checking of weakref list in dealloc of extensio...Victor Stinner2025-07-017-17/+15
* [3.13] gh-134908: Protect `textiowrapper_iternext` with critical section (gh-...Sam Gross2025-06-021-1/+15
* [3.13] gh-122559: Synchronize C and Python implementation of the io module ab...Serhiy Storchaka2025-05-043-10/+5
* [3.13] gh-131082: Add missing guards for WIN32_LEAN_AND_MEAN (GH-131044) (#13...Miss Islington (bot)2025-03-111-1/+1
* [3.13] gh-128083: Fix macro redefinition warning in clinic. (GH-127950) (#128...Peter Bierma2024-12-191-1/+10
* [3.13] gh-127341: Argument Clinic: fix compiler warnings for getters with doc...Peter Bierma2024-11-303-51/+21
* [3.13] gh-124008: Fix calculation of the number of written bytes for the Wind...Miss Islington (bot)2024-11-301-28/+90
* [3.13] gh-127182: Fix `io.StringIO.__setstate__` crash when `None` is the fir...Miss Islington (bot)2024-11-251-14/+16
* [3.13] gh-121489: Export private _PyBytes_Join() again (GH-122267) (#122287)Miss Islington (bot)2024-07-251-1/+0
* [3.13] gh-113993: Allow interned strings to be mortal, and fix related issues...Petr Viktorin2024-06-241-1/+1
* [3.13] gh-119506: fix `_io.TextIOWrapper.write()` write during flush (GH-1195...Miss Islington (bot)2024-06-191-9/+22
* [3.13] gh-119661: Add _Py_SINGLETON() include in Argumenet Clinic (#119712) (...Victor Stinner2024-05-293-5/+8
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-117151: optimize BufferedWriter(), do not buffer writes that are the buffe...morotti2024-04-231-2/+2
* gh-117764: Add signatures for __reduce__ and __reduce_ex__ in the _io module ...Serhiy Storchaka2024-04-123-10/+10
* gh-117068: Remove useless code in bytesio.c:resize_buffer() (GH-117069)NGRsoftlab2024-03-221-3/+0
* gh-115538: Emit warning when use bool as fd in _io.WindowsConsoleIO (GH-116925)AN Long2024-03-181-0/+7
* gh-95782: Fix io.BufferedReader.tell() etc. being able to return offsets < 0 ...6t8k2024-02-171-1/+10
* gh-111140: Adds PyLong_AsNativeBytes and PyLong_FromNative[Unsigned]Bytes fun...Steve Dower2024-02-121-1/+1
* gh-115059: Flush the underlying write buffer in io.BufferedRandom.read1() (GH...Serhiy Storchaka2024-02-091-0/+10
* gh-82626: Emit a warning when bool is used as a file descriptor (GH-111275)Serhiy Storchaka2024-02-051-0/+7
* gh-115015: Argument Clinic: fix generated code for METH_METHOD methods withou...Erlend E. Aasland2024-02-056-12/+12
* gh-114286: Fix `maybe-uninitialized` warning in `Modules/_io/fileio.c` (GH-11...Nikita Sobolev2024-01-191-1/+1
* Fix an incorrect comment in iobase_is_closed (GH-102952)Jonathon Reinhart2024-01-161-10/+9
* gh-77046: os.pipe() sets _O_NOINHERIT flag on fds (#113817)Victor Stinner2024-01-101-2/+2
* gh-66060: Use actual class name in _io type's __repr__ (#30824)AN Long2024-01-093-20/+29
* gh-80109: Fix io.TextIOWrapper dropping the internal buffer during write() (G...Zackery Spytz2024-01-081-4/+8
* gh-112205: Support docstring for `@getter` (#113160)Donghee Na2023-12-204-49/+204
* gh-112205: Update textio module to use `@getter` as possible. (gh-113095)Donghee Na2023-12-142-49/+125
* gh-111049: Fix crash during garbage collection of the BytesIO buffer object (...Serhiy Storchaka2023-12-141-10/+4
* gh-112205: Support `@setter` annotation from AC (gh-112922)Donghee Na2023-12-136-52/+113
* gh-112205: Update stringio module to use AC for the thread-safe (gh-112549)Donghee Na2023-11-302-35/+79
* gh-112205: Support @getter annotation from AC (gh-112396)Donghee Na2023-11-302-49/+88
* gh-111965: Use critical sections to make io.BufferedIOBase and its related cl...Mayuresh Kedari2023-11-222-40/+180
* gh-111965: Using critical sections to make ``io.StringIO`` thread safe. (gh-1...AN Long2023-11-192-30/+194
* gh-111903: Update AC to support "pycore_critical_section.h" header (gh-112251)Donghee Na2023-11-194-4/+4
* gh-111965: Use critical sections to make io.TextIOWrapper thread safe (gh-112...AN Long2023-11-182-39/+181
* gh-111942: Fix SystemError in the TextIOWrapper constructor (#112061)Serhiy Storchaka2023-11-141-2/+6
* gh-111942: Fix crashes in TextIOWrapper.reconfigure() (GH-111976)Serhiy Storchaka2023-11-141-3/+36
* gh-111903: Add `@critical_section` directive to Argument Clinic. (#111904)Sam Gross2023-11-142-3/+11
* Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)Serhiy Storchaka2023-11-101-6/+1
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-074-13/+58
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-014-58/+13
* gh-111174: Fix crash in getbuffer() called repeatedly for empty BytesIO (GH-1...Serhiy Storchaka2023-10-251-3/+4
* gh-67565: Remove redundant C-contiguity checks (GH-105521)Furkan Onder2023-10-234-44/+4
* gh-110913: Fix WindowsConsoleIO chunking of UTF-8 text (GH-111007)Tamás Hegedűs2023-10-201-16/+20
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-178-8/+16
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-301-15/+19
* gh-109611: Add convenient C API function _PyFile_Flush() (GH-109612)Serhiy Storchaka2023-09-233-48/+25
* gh-108511: Add C API functions which do not silently ignore errors (GH-109025)Serhiy Storchaka2023-09-172-7/+2