| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Merge 3.2 | Éric Araujo | 2012-02-26 | 1 | -1/+1 |
|\ |
|
| * | Fix typo in “seperat{or,ion}” | Éric Araujo | 2012-02-26 | 1 | -1/+1 |
|
|
* | | Fix compiler warnings | Victor Stinner | 2011-11-22 | 1 | -1/+1 |
|
|
* | | Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() | Victor Stinner | 2011-11-21 | 1 | -2/+2 |
|
|
* | | Issue #13393: In TextIOWrapper.read(n), try to read `n` characters as | Antoine Pitrou | 2011-11-18 | 1 | -5/+9 |
|
|
* | | Restore performance of special casings for utf-16 and utf-32 in TextIOWrapper | Antoine Pitrou | 2011-11-13 | 1 | -18/+12 |
|
|
* | | In text I/O, optimize scanning for new lines with 1-byte unicode chars | Antoine Pitrou | 2011-11-13 | 1 | -12/+20 |
|
|
* | | Fix memory leak in io.StringIO | Antoine Pitrou | 2011-11-12 | 1 | -0/+1 |
|
|
* | | Replace {Get,Set,Has}AttrString with *AttrId. | Martin v. Löwis | 2011-10-14 | 1 | -6/+10 |
|
|
* | | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -17/+17 |
|
|
* | | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -43/+60 |
|
|
* | | Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. | Martin v. Löwis | 2011-10-07 | 1 | -24/+20 |
|
|
* | | _io.textio: fix character type, use Py_UCS4 instead of Py_UNICODE | Victor Stinner | 2011-09-29 | 1 | -3/+3 |
|
|
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -182/+170 |
|
|
* | | Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without | Antoine Pitrou | 2011-07-23 | 1 | -6/+14 |
|\ \
| |/ |
|
| * | Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without | Antoine Pitrou | 2011-07-23 | 1 | -6/+14 |
|
|
* | | Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIO... | Antoine Pitrou | 2011-07-13 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIO... | Antoine Pitrou | 2011-07-13 | 1 | -1/+1 |
|
|
* | | Fast path for IncrementalNewlineDecoder.decode() in io.TextIOWrapper.read(-1) | Victor Stinner | 2011-05-25 | 1 | -2/+7 |
|
|
* | | Issue #11114: Fix catastrophic performance of tell() on text files (up | Antoine Pitrou | 2011-02-25 | 1 | -39/+96 |
|/ |
|
* | Issue #10872: The repr() of TextIOWrapper objects now includes the mode | Antoine Pitrou | 2011-01-09 | 1 | -7/+34 |
|
|
* | Issue #10180: Pickling file objects is now explicitly forbidden, since | Antoine Pitrou | 2010-11-05 | 1 | -0/+9 |
|
|
* | Issue #10093: ResourceWarnings are now issued when files and sockets are | Antoine Pitrou | 2010-10-29 | 1 | -0/+9 |
|
|
* | Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an | Antoine Pitrou | 2010-09-05 | 1 | -17/+9 |
|
|
* | Issue #6697: Check that _PyUnicode_AsString() result is not NULL in textio.c | Victor Stinner | 2010-05-19 | 1 | -2/+7 |
|
|
* | Merged revisions 80720 via svnmerge from | Antoine Pitrou | 2010-05-03 | 1 | -7/+21 |
|
|
* | Merged revisions 77890 via svnmerge from | Antoine Pitrou | 2010-01-31 | 1 | -9/+1 |
|
|
* | Merged revisions 76805 via svnmerge from | Benjamin Peterson | 2009-12-13 | 1 | -1/+1 |
|
|
* | Merged revisions 75007 via svnmerge from | Antoine Pitrou | 2009-09-21 | 1 | -3/+3 |
|
|
* | Merged revisions 74581 via svnmerge from | Amaury Forgeot d'Arc | 2009-08-29 | 1 | -4/+9 |
|
|
* | move to a naming scheme with all lowercase and underscores | Benjamin Peterson | 2009-06-12 | 1 | -172/+169 |
|
|
* | stop throwing out all errors when PyObject_GetAttr fails | Benjamin Peterson | 2009-06-06 | 1 | -6/+19 |
|
|
* | give the C implementation of TextIOWrapper the errors property #6217 | Benjamin Peterson | 2009-06-06 | 1 | -0/+21 |
|
|
* | Issue #5761: Add the name of the underlying file to the repr() of various IO ... | Antoine Pitrou | 2009-05-23 | 1 | -2/+19 |
|
|
* | correctly handle invalid operations on streams (like writing on a non-writabl... | Benjamin Peterson | 2009-05-14 | 1 | -1/+6 |
|
|
* | Issue #5006: Better handling of unicode byte-order marks (BOM) in the io libr... | Antoine Pitrou | 2009-05-14 | 1 | -22/+104 |
|
|
* | implement a detach() method for BufferedIOBase and TextIOBase #5883 | Benjamin Peterson | 2009-05-01 | 1 | -4/+47 |
|
|
* | use NULL for the ends of tables | Benjamin Peterson | 2009-04-19 | 1 | -4/+4 |
|
|
* | Issue 5682: Move _io module into its own subdirectory. | Alexandre Vassalotti | 2009-04-04 | 1 | -0/+2420 |
|
|