aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/codecs.py
Commit message (Expand)AuthorAge
* gh-51511: Note that codecs.open()'s encoding parameter affects automatic conv...Stanley2022-10-21
* gh-93096: Remove `python -m codecs` (gh-94233)Oleg Iarygin2022-07-02
* bpo-14014: Clarify StreamWriter.reset() documentation (GH-13716)Berker Peksag2021-01-06
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)Victor Stinner2020-08-11
* bpo-38971: Open file in codecs.open() closes if exception raised. (GH-17666)Chris A2020-03-02
* bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278)Ammar Askar2019-05-31
* bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779)Jelle Zijlstra2019-05-22
* bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842)Alexey Izbyshev2018-10-20
* bpo-32110: codecs.StreamReader.read(n) now returns not more than n (#4499)Serhiy Storchaka2017-11-29
* bpo-29783: Replace codecs.open() with io.open() (#599)Victor Stinner2017-06-16
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-02
|\
| * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-02
* | Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Code...Berker Peksag2015-07-30
|\|
| * Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Code...Berker Peksag2015-07-30
* | Escaped backslashes in docstrings.Serhiy Storchaka2015-04-03
|\|
| * Escaped backslashes in docstrings.Serhiy Storchaka2015-04-03
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-25
* | Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-18
|\|
| * Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-18
* | Merge issue 19548 changes from 3.4Nick Coghlan2015-01-07
|\|
| * Issue 19548: update codecs module documentationNick Coghlan2015-01-07
* | Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-20
|\|
| * Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-20
* | Issue #19676: Added the "namereplace" error handler.Serhiy Storchaka2014-11-25
* | Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-22
|/
* Issue #8260: The read(), readline() and readlines() methods ofSerhiy Storchaka2014-01-26
* Issue #19619: Blacklist non-text codecs in method APINick Coghlan2013-11-22
* Describe 'surrogateescape' in the documentation.Andrew Kuchling2013-06-16
* Issue16097 Fix small typo in comment (patch by Wael Al Jishi)Tim Golden2012-10-01
* Issue #14874: Restore charmap decoding speed to pre-PEP 393 levels.Antoine Pitrou2012-06-16
* #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-28
* #7475: add (un)transform method to bytes/bytearray and str, add back codecs t...Georg Brandl2010-12-02
* Merged revisions 81471-81472 via svnmerge fromVictor Stinner2010-05-22
* Merged revisions 81459 via svnmerge fromVictor Stinner2010-05-22
* Make TextIOWrapper's seek/tell work properly with stateful decoders;Ka-Ping Yee2008-03-18
* Document the expected convention for getstate() (as explained to me by Guido).Ka-Ping Yee2008-03-17
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-02
* Make the BOM constants in codecs.py bytes.Walter Dörwald2007-05-04
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-02
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-21
* Apply SF patch #1698994: Add getstate() and setstate()Walter Dörwald2007-04-16
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-10
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-13
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-21
* If size is specified, try to read at least size characters.Walter Dörwald2006-03-06
* Whitespace normalization.Tim Peters2005-12-25
* Patch #1268314: Cache lines in StreamReader.readlines for performance.Martin v. Löwis2005-09-18
* SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it readsWalter Dörwald2005-09-01
* Return complete lines from codec stream readersMartin v. Löwis2005-08-24