summaryrefslogtreecommitdiff
path: root/Modules/_io
Commit message (Expand)AuthorAgeFilesLines
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Zackery Spytz2018-12-201-0/+4
* [2.7] bpo-25862: Fix several bugs in the _io module. (GH-8026) (GH-8033)Serhiy Storchaka2018-12-042-7/+17
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Miss Islington (bot)2018-10-311-1/+1
* [2.7] bpo-34068: iobase_close could call PyObject_SetAttrString with an excep...Serhiy Storchaka2018-07-171-3/+11
* [2.7] bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)...Zackery Spytz2018-06-291-0/+4
* [2.7] bpo-32186: Release the GIL during fstat and lseek calls (#4651)Nir Soffer2017-12-071-11/+44
* [2.7] bpo-25359: Add missed "goto error" after setting an exception. (GH-3712...Serhiy Storchaka2017-09-271-0/+1
* bpo-31095: Fix potential crash during GC (GH-3197)INADA Naoki2017-09-041-0/+1
* [2.7] bpo-31243: Fixed PyArg_ParseTuple failure checks. (GH-3171) (#3235)Oren Milman2017-08-291-1/+1
* [2.7] bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() ...Serhiy Storchaka2017-04-191-4/+9
* bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese...Xiang Zhang2017-04-151-12/+21
* Fix spelling and markup in documentation and code commentMartin Panter2017-01-141-1/+1
* Issue #28768: Fix implicit declaration of function _setmode. Patch by Masayuk...Steve Dower2016-12-281-0/+3
* Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator whenSerhiy Storchaka2016-11-031-8/+7
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-023-4/+4
* Issue #23908: os functions, open() and the io.FileIO constructor now rejectSerhiy Storchaka2016-07-011-1/+14
* Issue #20699: Document that “io” methods should accept memoryviewMartin Panter2016-06-034-6/+7
* check the result of PyByteArray_Resize in readline() (closes #27211)Benjamin Peterson2016-06-031-1/+4
* Fix spelling (inital), grammar (may translates) in documentation, commentsMartin Panter2016-04-191-2/+2
* Fix typos in code comment and documentationMartin Panter2016-04-161-1/+1
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-062-9/+9
* Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-272-18/+9
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-192-2/+2
* Issue #22413: Document newline effect on StringIO initializer and getvalueMartin Panter2015-10-101-1/+6
* Issue #25030: Do not document seek() as if it accepts keyword argumentsMartin Panter2015-09-111-1/+1
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-311-12/+22
* Issue #21859: Corrected FileIO docstrings.Serhiy Storchaka2015-04-101-14/+17
* Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.Serhiy Storchaka2015-03-301-5/+2
* Issue #23781: Add private helper function _PyErr_ReplaceException() thatSerhiy Storchaka2015-03-303-26/+6
* Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-4/+17
* Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-211-7/+7
* allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-212-38/+39
* clear BufferedRWPair weakrefs on deallocation (closes #22517)Benjamin Peterson2014-09-291-0/+2
* Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods.Berker Peksag2014-09-241-3/+5
* properly decref the return value of close()Benjamin Peterson2014-07-041-3/+5
* Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before,Victor Stinner2014-07-021-2/+2
* Issue #21310: Fixed possible resource leak in failed open().Serhiy Storchaka2014-06-091-9/+21
* Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_ResizeKristján Valur Jónsson2014-04-251-12/+3
* #15840: make docs consistent by saying operations on closed files raise Value...Andrew Kuchling2014-04-151-2/+2
* Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-121-2/+7
* Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...Antoine Pitrou2013-09-041-10/+13
* Issue #13461: Fix a crash in the TextIOWrapper.tell method and in the "replace"Serhiy Storchaka2013-08-201-1/+1
* Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,Terry Jan Reedy2013-03-111-1/+1
* #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-231-2/+2
* Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-19/+44
* Additional fix for Issue #12268: The io module file object writelines() methodsGregory P. Smith2013-02-012-3/+9
* Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-192-4/+5
* Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GBVictor Stinner2013-01-031-2/+11
* call close on the underlying stream even if flush raises (#16597)Benjamin Peterson2012-12-202-9/+33