summaryrefslogtreecommitdiffstats
path: root/Modules/_io
Commit message (Expand)AuthorAgeFilesLines
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-1/+1
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Serhiy Storchaka2018-11-051-1/+1
* bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271)Victor Stinner2018-11-011-1/+1
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-1/+1
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Xiang Zhang2018-10-311-1/+1
* bpo-33138: Change standard error message for non-pickleable and non-copyable ...Serhiy Storchaka2018-10-314-42/+0
* bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842)Alexey Izbyshev2018-10-201-0/+9
* bpo-34070: open() only checks for isatty if buffering < 0 (GH-8187)David Herberth2018-10-191-3/+3
* bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)Stéphane Wirtel2018-10-171-5/+3
* closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)Benjamin Peterson2018-09-121-1/+1
* bpo-34217: Use lowercase for windows headers (GH-8472)Erik Janssens2018-08-161-1/+1
* bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582)jdemeyer2018-08-021-21/+21
* bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. ...ValeriyaSinevich2018-07-191-1/+5
* bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exce...Zackery Spytz2018-07-171-5/+7
* bpo-25862: Fix several bugs in the _io module. (GH-8026)Serhiy Storchaka2018-06-302-8/+17
* bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)Zackery Spytz2018-06-291-0/+5
* Fix Windows build of Python for latest WinSDK. (GH-6874)Carl Meyer2018-05-171-1/+1
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-295-6/+6
* bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)Serhiy Storchaka2018-02-241-0/+3
* bpo-32228: Reset raw_pos after unwinding the raw stream (#4858)Nitish Chandra2018-01-281-4/+10
* bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...Serhiy Storchaka2018-01-254-64/+37
* bpo-31572: Get rid of PyObject_HasAttr() and _PyObject_HasAttrId() in the _io...Serhiy Storchaka2018-01-165-63/+105
* closes bpo-32460: ensure all non-static globals have initializers (#5061)Benjamin Peterson2017-12-311-27/+27
* bpo-32402: io: Add missing NULL check. (GH-4971)INADA Naoki2017-12-241-0/+6
* bpo-15216: io: TextIOWrapper.reconfigure() accepts encoding, errors and newli...INADA Naoki2017-12-212-150/+329
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-158-38/+38
* bpo-17852: Revert incorrect fix based on misunderstanding of _Py_PyAtExit() s...Antoine Pitrou2017-12-133-54/+1
* bpo-32186: Release the GIL during lseek and fstat (#4652)Nir Soffer2017-12-011-1/+5
* bpo-31976: Fix race condition when flushing a file is slow. (#4331)benfogle2017-11-101-5/+9
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-082-2/+2
* bpo-25359: Add missed "goto error" after setting an exception. (#3712)Serhiy Storchaka2017-09-231-0/+1
* bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#...Neil Schemenauer2017-09-223-1/+54
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-1/+2
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-13/+0
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-061-1/+1
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-061-1/+1
* Revert "bpo-17852: Maintain a list of BufferedWriter objects. Flush them on ...Neil Schemenauer2017-09-053-49/+1
* bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#...Neil Schemenauer2017-09-053-1/+49
* bpo-31243: Fixed PyArg_ParseTuple failure checks. (#3171)Oren Milman2017-08-291-5/+13
* bpo-31271: Fix an assertion failure in io.TextIOWrapper.write. (#3201)Oren Milman2017-08-251-0/+7
* bpo-28261: fix err msgs where PyArg_ParseTuple is used to parse normal tuples...Oren Milman2017-08-241-3/+20
* bpo-31095: fix potential crash during GC (GH-2974)INADA Naoki2017-08-241-0/+2
* bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tupl...Oren Milman2017-08-201-1/+8
* bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)Serhiy Storchaka2017-07-038-146/+38
* [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka2017-06-281-2/+1
* bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (#2285)Serhiy Storchaka2017-06-271-8/+1
* bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)Sylvain2017-06-107-92/+92
* bpo-30601: Fix a refleak in WindowsConsoleIO (#2003)Victor Stinner2017-06-081-3/+2
* Fix bpo-30526: Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_thro...Antoine Pitrou2017-06-032-1/+96
* bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConso...Segev Finer2017-06-021-1/+1