| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #8260: The read(), readline() and readlines() methods of | Serhiy Storchaka | 2014-01-26 | 1 | -7/+6 |
* | Issue #19619: Blacklist non-text codecs in method API | Nick Coghlan | 2013-11-22 | 1 | -1/+13 |
* | Describe 'surrogateescape' in the documentation. | Andrew Kuchling | 2013-06-16 | 1 | -0/+1 |
* | Issue16097 Fix small typo in comment (patch by Wael Al Jishi) | Tim Golden | 2012-10-01 | 1 | -1/+1 |
* | Issue #14874: Restore charmap decoding speed to pre-PEP 393 levels. | Antoine Pitrou | 2012-06-16 | 1 | -4/+1 |
* | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). | Ezio Melotti | 2011-09-28 | 1 | -7/+7 |
* | #7475: add (un)transform method to bytes/bytearray and str, add back codecs t... | Georg Brandl | 2010-12-02 | 1 | -10/+13 |
* | Merged revisions 81471-81472 via svnmerge from | Victor Stinner | 2010-05-22 | 1 | -3/+10 |
* | Merged revisions 81459 via svnmerge from | Victor Stinner | 2010-05-22 | 1 | -0/+4 |
* | Make TextIOWrapper's seek/tell work properly with stateful decoders; | Ka-Ping Yee | 2008-03-18 | 1 | -9/+16 |
* | Document the expected convention for getstate() (as explained to me by Guido). | Ka-Ping Yee | 2008-03-17 | 1 | -1/+3 |
* | #1535: rename __builtin__ module to builtins. | Georg Brandl | 2007-12-02 | 1 | -2/+2 |
* | Make the BOM constants in codecs.py bytes. | Walter Dörwald | 2007-05-04 | 1 | -11/+11 |
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -1/+1 |
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -5/+5 |
* | Apply SF patch #1698994: Add getstate() and setstate() | Walter Dörwald | 2007-04-16 | 1 | -11/+55 |
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -2/+2 |
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -3/+30 |
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -5/+31 |
* | Merge part of the trunk changes into the p3yk branch. This merges from 43030 | Thomas Wouters | 2006-04-21 | 1 | -11/+172 |
* | If size is specified, try to read at least size characters. | Walter Dörwald | 2006-03-06 | 1 | -1/+4 |
* | Whitespace normalization. | Tim Peters | 2005-12-25 | 1 | -2/+2 |
* | Patch #1268314: Cache lines in StreamReader.readlines for performance. | Martin v. Löwis | 2005-09-18 | 1 | -0/+37 |
* | SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it reads | Walter Dörwald | 2005-09-01 | 1 | -1/+3 |
* | Return complete lines from codec stream readers | Martin v. Löwis | 2005-08-24 | 1 | -3/+17 |
* | Make attributes and local variables in the StreamReader str objects instead | Walter Dörwald | 2005-07-20 | 1 | -5/+7 |
* | Fix comment. | Walter Dörwald | 2005-04-21 | 1 | -2/+2 |
* | If the data read from the bytestream in readline() ends in a '\r' read one more | Walter Dörwald | 2005-04-21 | 1 | -12/+4 |
* | Fix typos. | Walter Dörwald | 2005-04-04 | 1 | -2/+2 |
* | Fix for SF bug #1175396: readline() will now read one more character, if | Walter Dörwald | 2005-04-04 | 1 | -0/+9 |
* | typo | Skip Montanaro | 2005-03-16 | 1 | -1/+1 |
* | Add default value for "whence" argument. | Walter Dörwald | 2005-03-14 | 1 | -1/+1 |
* | Reset internal buffers when seek() is called. This fixes SF bug #1156259. | Walter Dörwald | 2005-03-14 | 1 | -1/+11 |
* | Build with --disable-unicode again. Fixes #1158607. | Martin v. Löwis | 2005-03-08 | 1 | -5/+13 |
* | Fix and test for SF bug #1098990: codec readline() splits lines apart. | Walter Dörwald | 2005-01-10 | 1 | -2/+2 |
* | The changes to the stateful codecs in 2.4 resulted in StreamReader.readline() | Walter Dörwald | 2004-12-21 | 1 | -30/+41 |
* | SF #1048865: Fix a trivial typo that breaks StreamReader.readlines() | Hye-Shik Chang | 2004-10-17 | 1 | -1/+1 |
* | SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support | Walter Dörwald | 2004-09-07 | 1 | -43/+69 |
* | Ignore sizehint argument. Fixes SF #844561. | Marc-André Lemburg | 2004-02-26 | 1 | -10/+4 |
* | Fix typos. | Walter Dörwald | 2003-02-02 | 1 | -4/+4 |
* | sys was already imported, remove second import | Neal Norwitz | 2002-12-30 | 1 | -2/+0 |
* | Patch to make _codecs a builtin module. This is necessary since | Marc-André Lemburg | 2002-12-12 | 1 | -5/+15 |
* | Add missing documentation for the PEP 293 functionality to | Walter Dörwald | 2002-11-19 | 1 | -7/+22 |
* | Add next() and __iter__() methods to StreamReader, StreamReaderWriter | Walter Dörwald | 2002-11-06 | 1 | -0/+27 |
* | PEP 293 implemention (from SF patch http://www.python.org/sf/432401) | Walter Dörwald | 2002-09-02 | 1 | -1/+12 |
* | Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE, | Walter Dörwald | 2002-06-04 | 1 | -17/+32 |
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
* | Set default value for readlines.sizehint to None. Change needed for 2.2.1 | Martin v. Löwis | 2002-03-05 | 1 | -1/+1 |
* | Added new helpers for easy access to codecs. Docs will follow. | Marc-André Lemburg | 2001-09-19 | 1 | -0/+42 |
* | Fix typo in comment | Andrew M. Kuchling | 2001-09-18 | 1 | -1/+1 |