summaryrefslogtreecommitdiff
path: root/Modules/_io/bufferedio.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-4/+2
* Use _PyObject_CallMethodIdObjArgs() in _ioVictor Stinner2016-12-091-1/+2
* Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-1/+1
* Issue #23214: Implement optional BufferedReader, BytesIO read1() argumentMartin Panter2016-10-201-6/+4
* Issue #20699: Merge io bytes-like fixes from 3.5Martin Panter2016-05-281-1/+1
|\
| * Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
| |\
| | * Issue #22854: Merge UnsupportedOperation fixes from 3.5Martin Panter2016-03-311-1/+1
| | |\
| | | * 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-1/+1
* | | | | Issue #20699: Document that ?io? methods accept bytes-like objectsMartin Panter2016-05-281-2/+2
|/ / / /
* | | | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-4/+4
|/ / /
* | | Issue #22854: Clarify documentation about UnsupportedOperation and add testsMartin Panter2016-03-311-2/+0
| |/ |/|
* | Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-271-8/+4
|/
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* Fixes cast warning in bufferedio.cSteve Dower2015-05-231-1/+1
* Issue #23796: peak and read1 methods of BufferedReader now raise ValueErrorBerker Peksag2015-05-121-0/+5
* Issue #24001: Argument Clinic converters now use accept={type}Larry Hastings2015-05-041-8/+8
* Issue #20175: Converted the _io module to Argument Clinic.Serhiy Storchaka2015-04-161-475/+518
* Issue #23309: Avoid a deadlock at shutdown if a daemon thread is abortedAntoine Pitrou2015-04-131-1/+22
|\
| * Issue #23309: Avoid a deadlock at shutdown if a daemon thread is abortedAntoine Pitrou2015-04-131-1/+22
* | Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-10/+60
|\ \ | |/ |/|
| * Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-2/+2
| * Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() nowVictor Stinner2015-03-061-4/+0
| * merge 3.4 (#23093)Benjamin Peterson2014-12-211-6/+60
| |\
| | * Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-081-14/+2
| | |\
| | * \ merge 3.4 (#22517)Benjamin Peterson2014-09-291-6/+60
| | |\ \
| | | * | add BufferedIOBase.readinto1 (closes #20578)Benjamin Peterson2014-06-221-6/+60
* | | | | Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-4/+10
|/ / / /
* | | | allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-211-1/+1
| |_|/ |/| |
* | | Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-081-14/+2
|/ /
* | merge 3.3 (#22517)Benjamin Peterson2014-09-291-17/+81
|\ \ | |/
| * 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 #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-121-2/+7
| |\
| * | Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown.Antoine Pitrou2013-12-211-1/+3
| * | Issue #19515: Remove identifiers duplicated in the same file.Victor Stinner2013-11-121-1/+0
| * | Issue #18112: PEP 442 implementation (safe object finalization).Antoine Pitrou2013-07-301-11/+63
| * | Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now failVictor Stinner2013-07-181-0/+5
| * | Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().Richard Oudkerk2013-07-151-0/+5
| |\ \
| | * \ Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when rawSerhiy Storchaka2013-05-281-0/+5
| | |\ \
| | | * \ Merge #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-231-0/+5
| | | |\ \
| | | | * \ merge 3.3 (#16597)Benjamin Peterson2012-12-201-0/+5
| | | | |\ \
| | | | | * | Closes #15488: Closed files keep their buffer aliveJesus Cea2012-10-041-0/+5
* | | | | | | clear BufferedRWPair weakrefs on deallocation (closes #22517)Benjamin Peterson2014-09-291-0/+2
| |_|_|_|_|/ |/| | | | |
* | | | | | Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-121-2/+7
|/ / / / /
* | | | | Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().Richard Oudkerk2013-07-151-48/+45
|/ / / /
* | | | Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when rawSerhiy Storchaka2013-05-281-0/+8
|/ / /
* | | Merge #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-231-120/+224
|\ \ \ | |/ /
| * | call close on the underlying stream even if flush raises (closes #16597)Benjamin Peterson2012-12-201-5/+21
| |/
| * Fixed reference leak in error branch of _bufferedreader_read_all(). The varia...Christian Heimes2012-09-101-1/+3