| Commit message (Expand) | Author | Age | Files | Lines |
* | merge 3.4 (#23093) | Benjamin Peterson | 2014-12-22 | 1 | -38/+40 |
|\ |
|
| * | allow more operations to work on detached streams (closes #23093) | Benjamin Peterson | 2014-12-22 | 1 | -38/+40 |
|
|
* | | merge 3.4 (#22849) | Benjamin Peterson | 2014-11-12 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | fix possible double free in TextIOWrapper.__init__ (closes #22849) | Benjamin Peterson | 2014-11-12 | 1 | -1/+1 |
|
|
* | | Issue #21715: Extracted shared complicated code in the _io module to new | Serhiy Storchaka | 2014-10-08 | 1 | -14/+2 |
|\ \
| |/ |
|
| * | Issue #21715: Extracted shared complicated code in the _io module to new | Serhiy Storchaka | 2014-10-08 | 1 | -14/+2 |
|
|
* | | Issue #22156: Fix some "comparison between signed and unsigned integers" | Victor Stinner | 2014-08-15 | 1 | -1/+1 |
|
|
* | | Issue #10310: Use "unsigned int field:1" instead of "signed int field:1" in a | Victor Stinner | 2014-06-17 | 1 | -3/+3 |
|
|
* | | PyErr_NormalizeException doesn't like being called with an exception set | Serhiy Storchaka | 2014-06-11 | 1 | -4/+4 |
|\ \
| |/ |
|
| * | PyErr_NormalizeException doesn't like being called with an exception set | Serhiy Storchaka | 2014-06-11 | 1 | -4/+4 |
|
|
* | | Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. | Serhiy Storchaka | 2014-06-09 | 1 | -0/+1 |
|\ \
| |/ |
|
| * | Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. | Serhiy Storchaka | 2014-06-09 | 1 | -0/+1 |
|
|
* | | Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush... | Antoine Pitrou | 2014-05-08 | 1 | -4/+5 |
|\ \
| |/ |
|
| * | Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush... | Antoine Pitrou | 2014-05-08 | 1 | -4/+5 |
|
|
* | | Issue #21057: TextIOWrapper now allows the underlying binary stream's read() ... | Antoine Pitrou | 2014-04-29 | 1 | -14/+20 |
|/ |
|
* | Close #20404: blacklist non-text encodings in io.TextIOWrapper | Nick Coghlan | 2014-02-04 | 1 | -12/+22 |
|
|
* | Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. | Antoine Pitrou | 2013-12-21 | 1 | -2/+7 |
|
|
* | Issue #19356: Avoid using a C variabled named "_self", it's a reserved word i... | Antoine Pitrou | 2013-10-23 | 1 | -2/+2 |
|\ |
|
| * | Issue #19356: Avoid using a C variabled named "_self", it's a reserved word i... | Antoine Pitrou | 2013-10-23 | 1 | -2/+2 |
|
|
* | | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. | Serhiy Storchaka | 2013-08-20 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. | Serhiy Storchaka | 2013-08-20 | 1 | -1/+1 |
|
|
* | | Issue #18608: Avoid keeping a strong reference to the locale module inside th... | Antoine Pitrou | 2013-08-01 | 1 | -27/+21 |
|
|
* | | Issue #18112: PEP 442 implementation (safe object finalization). | Antoine Pitrou | 2013-07-30 | 1 | -8/+29 |
|
|
* | | Issue #9566: _io: Use Py_SAFE_DOWNCAST for fix a compiler warning on Windows x64 | Victor Stinner | 2013-06-24 | 1 | -1/+1 |
|
|
* | | Merge with 3.3 | Andrew Kuchling | 2013-06-16 | 1 | -2/+3 |
|\ \
| |/ |
|
| * | Describe 'surrogateescape' in the documentation. | Andrew Kuchling | 2013-06-16 | 1 | -2/+3 |
|
|
* | | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying | Serhiy Storchaka | 2013-02-03 | 1 | -28/+48 |
|\ \
| |/ |
|
| * | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying | Serhiy Storchaka | 2013-02-03 | 1 | -28/+48 |
| |\ |
|
| | * | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying | Serhiy Storchaka | 2013-02-03 | 1 | -18/+44 |
|
|
* | | | Additional fix for issue #12268: The io module file object write methods no | Gregory P. Smith | 2013-02-01 | 1 | -2/+5 |
|\ \ \
| |/ / |
|
| * | | Additional fix for issue #12268: The io module file object write methods no | Gregory P. Smith | 2013-02-01 | 1 | -2/+5 |
| |\ \
| | |/ |
|
| | * | Additional fix for Issue #12268: The io module file object writelines() metho... | Gregory P. Smith | 2013-02-01 | 1 | -2/+5 |
|
|
| * | | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-19 | 1 | -1/+1 |
| |\ \
| | |/ |
|
* | | | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-14 | 1 | -1/+1 |
|
|
* | | | merge 3.3 (#16597) | Benjamin Peterson | 2012-12-20 | 1 | -4/+20 |
|\ \ \
| |/ / |
|
| * | | call close on the underlying stream even if flush raises (closes #16597) | Benjamin Peterson | 2012-12-20 | 1 | -4/+20 |
|
|
* | | | Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified | Christian Heimes | 2012-10-17 | 1 | -12/+6 |
|/ / |
|
* | | #15796: merge with 3.2. | Ezio Melotti | 2012-09-18 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. | Ezio Melotti | 2012-09-18 | 1 | -1/+1 |
|
|
* | | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -1/+4 |
|\ \
| |/ |
|
| * | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -1/+4 |
|
|
* | | (Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n' | Victor Stinner | 2012-08-03 | 1 | -3/+3 |
|\ \
| |/ |
|
| * | open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't | Victor Stinner | 2012-08-03 | 1 | -3/+3 |
|
|
* | | Make TextIOWrapper's documentation clearer by copying the newline argument's ... | Antoine Pitrou | 2012-08-03 | 1 | -9/+16 |
|\ \
| |/ |
|
| * | Make TextIOWrapper's documentation clearer by copying the newline argument's ... | Antoine Pitrou | 2012-08-03 | 1 | -9/+16 |
|
|
* | | Fixes issue #12268: File readline, readlines and read() or readall() methods | Gregory P. Smith | 2012-06-24 | 1 | -2/+14 |
|\ \
| |/ |
|
| * | Fixes issue #12268: File readline, readlines and read() or readall() methods | Gregory P. Smith | 2012-06-24 | 1 | -2/+14 |
|
|
* | | Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore | Victor Stinner | 2012-06-05 | 1 | -2/+2 |
|
|
* | | Don't Py_DECREF NULL variable in io.IncrementalNewlineDecoder. | Ross Lagerwall | 2012-04-07 | 1 | -1/+1 |
|
|
* | | Issue #14153 Create _Py_device_encoding() to prevent _io from having to import | Brett Cannon | 2012-02-29 | 1 | -4/+7 |
|
|