summaryrefslogtreecommitdiff
path: root/Modules/_io
Commit message (Expand)AuthorAgeFilesLines
* Fix the error handling in bytesio_sizeof(). (GH-10459)Miss Islington (bot)2019-06-011-2/+7
* bpo-2091: Fix typo in exception message (GH-12987)Miss Islington (bot)2019-04-271-1/+1
* bpo-36523: Add docstring to io.IOBase.writelines (GH-12683)Marcin Niemira2019-04-222-3/+12
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-1/+1
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Miss Islington (bot)2018-12-171-0/+4
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-2/+4
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Miss Islington (bot)2018-11-271-1/+1
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Miss Islington (bot)2018-11-051-1/+1
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Miss Islington (bot)2018-10-311-1/+1
* bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)Miss Islington (bot)2018-10-171-5/+3
* bpo-34217: Use lowercase for windows headers (GH-8472)Miss Islington (bot)2018-08-161-1/+1
* bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. ...Miss Islington (bot)2018-07-291-1/+5
* bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exce...Miss Islington (bot)2018-07-171-5/+7
* bpo-25862: Fix several bugs in the _io module. (GH-8026)Miss Islington (bot)2018-06-302-8/+17
* bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)Miss Islington (bot)2018-06-291-0/+5
* Fix Windows build of Python for latest WinSDK. (GH-6874) (GH-6952)Miss Islington (bot)2018-05-171-1/+1
* bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)Miss Islington (bot)2018-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-241-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-071-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-051-1/+1
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-051-1/+1
* Revert "bpo-17852: Maintain a list of BufferedWriter objects. Flush them on ...Neil Schemenauer2017-09-043-49/+1
* bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#...Neil Schemenauer2017-09-043-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
* bpo-30228: FileIO seek() and tell() set seekable (#1384)Victor Stinner2017-05-021-15/+21
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)Serhiy Storchaka2017-04-191-4/+9