summaryrefslogtreecommitdiff
path: root/Modules/_io/textio.c
Commit message (Expand)AuthorAgeFilesLines
* Merge doc fixes from 3.6Martin Panter2017-01-141-1/+1
|\
| * Merge doc fixes from 3.5Martin Panter2017-01-141-1/+1
| |\
| | * Fix grammar, typos and markup in documentation and code commentsMartin Panter2017-01-141-1/+1
* | | Use _PyObject_CallMethodIdObjArgs() in _ioVictor Stinner2016-12-091-3/+5
* | | Use _PyObject_CallMethodIdObjArgs()Victor Stinner2016-12-091-2/+2
|/ /
* | Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
* | Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
|\ \ | |/
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
* | Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator whenSerhiy Storchaka2016-11-031-12/+5
|\ \ | |/
| * Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator whenSerhiy Storchaka2016-11-031-12/+5
* | more PY_LONG_LONG to long longBenjamin Peterson2016-09-081-2/+2
* | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-13/+13
|\ \ | |/ |/|
| * Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-12/+12
| |\ |/ /
| * Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-271-8/+4
| |\
| * | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-10/+10
| * | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-2/+2
* | | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-4/+4
| |/ |/|
* | Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-271-8/+4
|/
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-218/+321
|\
| * Issue #24009: Got rid of using rare "y#" format unit in TextIOWrapper.tell().Serhiy Storchaka2015-05-061-2/+11
| * Issue #24001: Argument Clinic converters now use accept={type}Larry Hastings2015-05-041-4/+4
| * Use PyArg_ParseTuple (new API) instead of PyArg_Parse (old API) for parsing t...Serhiy Storchaka2015-04-191-5/+5
| * Issue #20175: Converted the _io module to Argument Clinic.Serhiy Storchaka2015-04-161-194/+282
| * Issue #22982: Improve BOM handling when seeking to multiple positions of a wr...Antoine Pitrou2015-04-131-18/+24
| |\
| | * Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.Serhiy Storchaka2015-03-301-6/+2
| | |\
| | * \ merge 3.4 (#23093)Benjamin Peterson2014-12-211-18/+24
| | |\ \
| | | * \ merge 3.4 (#22849)Benjamin Peterson2014-11-121-1/+1
| | | |\ \
| | | * \ \ Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-081-14/+2
| | | |\ \ \
| | | * | | | Issue #22156: Fix some "comparison between signed and unsigned integers"Victor Stinner2014-08-161-1/+1
| | | * | | | Issue #10310: Use "unsigned int field:1" instead of "signed int field:1" in aVictor Stinner2014-06-171-3/+3
| | | * | | | PyErr_NormalizeException doesn't like being called with an exception setSerhiy Storchaka2014-06-111-14/+20
| | | |\ \ \ \
| | | | * \ \ \ Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods.Serhiy Storchaka2014-06-091-14/+20
| | | | |\ \ \ \
| | | | | * \ \ \ Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush...Antoine Pitrou2014-05-091-14/+20
| | | | | |\ \ \ \
| | | | | | * | | | Issue #21057: TextIOWrapper now allows the underlying binary stream's read() ...Antoine Pitrou2014-04-291-14/+20
* | | | | | | | | | Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-2/+2
|/ / / / / / / / /
* | | | | | | | | Issue #22982: Improve BOM handling when seeking to multiple positions of a wr...Antoine Pitrou2015-04-131-4/+21
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.Serhiy Storchaka2015-03-301-6/+2
|/ / / / / / /
* | | | | | | allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-211-38/+40
| |_|_|_|_|/ |/| | | | |
* | | | | | fix possible double free in TextIOWrapper.__init__ (closes #22849)Benjamin Peterson2014-11-121-1/+1
| |_|_|_|/ |/| | | |
* | | | | Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-081-14/+2
|/ / / /
* | | | PyErr_NormalizeException doesn't like being called with an exception setSerhiy Storchaka2014-06-111-4/+4
|/ / /
* | | Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods.Serhiy Storchaka2014-06-091-0/+1
|/ /
* | Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush...Antoine Pitrou2014-05-091-4/+5
|/
* Close #20404: blacklist non-text encodings in io.TextIOWrapperNick Coghlan2014-02-041-12/+22
* Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown.Antoine Pitrou2013-12-211-2/+7
* Issue #19356: Avoid using a C variabled named "_self", it's a reserved word i...Antoine Pitrou2013-10-231-2/+2
|\
| * Issue #19356: Avoid using a C variabled named "_self", it's a reserved word i...Antoine Pitrou2013-10-231-2/+2
* | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-48/+57
|\ \ | |/ |/|
| * Issue #18608: Avoid keeping a strong reference to the locale module inside th...Antoine Pitrou2013-08-011-27/+21
| * Issue #18112: PEP 442 implementation (safe object finalization).Antoine Pitrou2013-07-301-8/+29