summaryrefslogtreecommitdiff
path: root/Lib/codecs.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278)Miss Islington (bot)2019-05-311-0/+6
* [3.7] bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779) (GH-13502)Jelle Zijlstra2019-05-221-1/+1
* bpo-32110: codecs.StreamReader.read(n) now returns not more than n (#4499)Serhiy Storchaka2017-11-291-3/+5
* bpo-29783: Replace codecs.open() with io.open() (#599)Victor Stinner2017-06-161-3/+4
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-3/+3
|\
| * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-3/+3
* | Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Code...Berker Peksag2015-07-301-4/+4
|\ \ | |/
| * Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Code...Berker Peksag2015-07-301-4/+4
* | Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-1/+1
|\ \ | |/
| * Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-1/+1
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-251-3/+6
* | Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
|\ \ | |/
| * Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
* | Merge issue 19548 changes from 3.4Nick Coghlan2015-01-071-41/+30
|\ \ | |/
| * Issue 19548: update codecs module documentationNick Coghlan2015-01-071-41/+30
* | Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-201-0/+6
|\ \ | |/
| * Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-201-1/+7
* | Issue #19676: Added the "namereplace" error handler.Serhiy Storchaka2014-11-251-0/+3
* | Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-221-2/+2
|/
* 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