summaryrefslogtreecommitdiff
path: root/Lib/codecs.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #8260: The read(), readline() and readlines() methods ofSerhiy Storchaka2014-01-261-7/+6
* Issue #19619: Blacklist non-text codecs in method APINick Coghlan2013-11-221-1/+13
* Describe 'surrogateescape' in the documentation.Andrew Kuchling2013-06-161-0/+1
* Issue16097 Fix small typo in comment (patch by Wael Al Jishi)Tim Golden2012-10-011-1/+1
* Issue #14874: Restore charmap decoding speed to pre-PEP 393 levels.Antoine Pitrou2012-06-161-4/+1
* #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-281-7/+7
* #7475: add (un)transform method to bytes/bytearray and str, add back codecs t...Georg Brandl2010-12-021-10/+13
* Merged revisions 81471-81472 via svnmerge fromVictor Stinner2010-05-221-3/+10
* Merged revisions 81459 via svnmerge fromVictor Stinner2010-05-221-0/+4
* Make TextIOWrapper's seek/tell work properly with stateful decoders;Ka-Ping Yee2008-03-181-9/+16
* Document the expected convention for getstate() (as explained to me by Guido).Ka-Ping Yee2008-03-171-1/+3
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-2/+2
* Make the BOM constants in codecs.py bytes.Walter Dörwald2007-05-041-11/+11
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-1/+1
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-5/+5
* Apply SF patch #1698994: Add getstate() and setstate()Walter Dörwald2007-04-161-11/+55
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-3/+30
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-5/+31
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-211-11/+172
* If size is specified, try to read at least size characters.Walter Dörwald2006-03-061-1/+4
* Whitespace normalization.Tim Peters2005-12-251-2/+2
* Patch #1268314: Cache lines in StreamReader.readlines for performance.Martin v. Löwis2005-09-181-0/+37
* SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it readsWalter Dörwald2005-09-011-1/+3
* Return complete lines from codec stream readersMartin v. Löwis2005-08-241-3/+17
* Make attributes and local variables in the StreamReader str objects insteadWalter Dörwald2005-07-201-5/+7
* Fix comment.Walter Dörwald2005-04-211-2/+2
* If the data read from the bytestream in readline() ends in a '\r' read one moreWalter Dörwald2005-04-211-12/+4
* Fix typos.Walter Dörwald2005-04-041-2/+2
* Fix for SF bug #1175396: readline() will now read one more character, ifWalter Dörwald2005-04-041-0/+9
* typoSkip Montanaro2005-03-161-1/+1
* Add default value for "whence" argument.Walter Dörwald2005-03-141-1/+1
* Reset internal buffers when seek() is called. This fixes SF bug #1156259.Walter Dörwald2005-03-141-1/+11
* Build with --disable-unicode again. Fixes #1158607.Martin v. Löwis2005-03-081-5/+13
* Fix and test for SF bug #1098990: codec readline() splits lines apart.Walter Dörwald2005-01-101-2/+2
* The changes to the stateful codecs in 2.4 resulted in StreamReader.readline()Walter Dörwald2004-12-211-30/+41
* SF #1048865: Fix a trivial typo that breaks StreamReader.readlines()Hye-Shik Chang2004-10-171-1/+1
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-071-43/+69
* Ignore sizehint argument. Fixes SF #844561.Marc-André Lemburg2004-02-261-10/+4
* Fix typos.Walter Dörwald2003-02-021-4/+4
* sys was already imported, remove second importNeal Norwitz2002-12-301-2/+0
* Patch to make _codecs a builtin module. This is necessary sinceMarc-André Lemburg2002-12-121-5/+15
* Add missing documentation for the PEP 293 functionality toWalter Dörwald2002-11-191-7/+22
* Add next() and __iter__() methods to StreamReader, StreamReaderWriterWalter Dörwald2002-11-061-0/+27
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-021-1/+12
* Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE,Walter Dörwald2002-06-041-17/+32
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* Set default value for readlines.sizehint to None. Change needed for 2.2.1Martin v. Löwis2002-03-051-1/+1
* Added new helpers for easy access to codecs. Docs will follow.Marc-André Lemburg2001-09-191-0/+42
* Fix typo in commentAndrew M. Kuchling2001-09-181-1/+1