summaryrefslogtreecommitdiffstats
path: root/Modules/_io/textio.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-25359: Add missed "goto error" after setting an exception. (GH-3712...Serhiy Storchaka2017-09-271-0/+1
* [2.7] bpo-31243: Fixed PyArg_ParseTuple failure checks. (GH-3171) (#3235)Oren Milman2017-08-291-1/+1
* Fix spelling and markup in documentation and code commentMartin Panter2017-01-141-1/+1
* Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator whenSerhiy Storchaka2016-11-031-8/+7
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-2/+2
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-5/+5
* Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-271-10/+5
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-311-12/+22
* 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-301-9/+2
* allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-221-37/+38
* Issue #13461: Fix a crash in the TextIOWrapper.tell method and in the "replace"Serhiy Storchaka2013-08-201-1/+1
* 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-011-2/+5
* call close on the underlying stream even if flush raises (#16597)Benjamin Peterson2012-12-201-4/+16
* Fixes Issue #12268 for the io module - File readline, readlines andGregory P. Smith2012-10-121-2/+14
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-1/+4
* Make TextIOWrapper's documentation clearer by copying the newline argument's ...Antoine Pitrou2012-08-031-9/+16
* Fix typo “seperator”Éric Araujo2012-02-261-1/+1
* Issue #7865: The close() method of :mod:`io` objects should not swallowAntoine Pitrou2010-05-031-7/+21
* - Issue #6939: Fix file I/O objects in the `io` module to keep the originalAntoine Pitrou2010-01-311-9/+1
* accept None as the same as having passed no argument in file types #7349Benjamin Peterson2009-12-131-1/+1
* Issue #6236, #6348: Fix various failures in the io module under AIXAntoine Pitrou2009-09-211-3/+3
* #6750: TextIOWrapped could duplicate output when several threads write to it.Amaury Forgeot d'Arc2009-08-291-4/+9
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-0/+2606