index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
codecs.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-66143: Allow copying and pickling of CodecInfo object (GH-109235)
Furkan Onder
2023-09-29
1
-0/+3
*
gh-50644: Forbid pickling of codecs streams (GH-109180)
Serhiy Storchaka
2023-09-10
1
-0/+12
*
gh-51511: Note that codecs.open()'s encoding parameter affects automatic conv...
Stanley
2022-10-21
1
-1/+2
*
gh-93096: Remove `python -m codecs` (gh-94233)
Oleg Iarygin
2022-07-02
1
-10/+0
*
bpo-14014: Clarify StreamWriter.reset() documentation (GH-13716)
Berker Peksag
2021-01-06
1
-2/+2
*
bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)
Victor Stinner
2020-08-11
1
-1/+1
*
bpo-38971: Open file in codecs.open() closes if exception raised. (GH-17666)
Chris A
2020-03-02
1
-5/+10
*
bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278)
Ammar Askar
2019-05-31
1
-0/+6
*
bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779)
Jelle Zijlstra
2019-05-22
1
-1/+1
*
bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842)
Alexey Izbyshev
2018-10-20
1
-2/+3
*
bpo-32110: codecs.StreamReader.read(n) now returns not more than n (#4499)
Serhiy Storchaka
2017-11-28
1
-3/+5
*
bpo-29783: Replace codecs.open() with io.open() (#599)
Victor Stinner
2017-06-16
1
-3/+4
*
Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5
Martin Panter
2015-11-02
1
-3/+3
|
\
|
*
Issue #25523: Correct "a" article to "an" article
Martin Panter
2015-11-02
1
-3/+3
*
|
Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Code...
Berker Peksag
2015-07-30
1
-4/+4
|
\
\
|
|
/
|
*
Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Code...
Berker Peksag
2015-07-30
1
-4/+4
*
|
Escaped backslashes in docstrings.
Serhiy Storchaka
2015-04-03
1
-1/+1
|
\
\
|
|
/
|
*
Escaped backslashes in docstrings.
Serhiy Storchaka
2015-04-03
1
-1/+1
*
|
Issue #22286: The "backslashreplace" error handlers now works with
Serhiy Storchaka
2015-01-25
1
-3/+6
*
|
Issue #23181: More "codepoint" -> "code point".
Serhiy Storchaka
2015-01-18
1
-1/+1
|
\
\
|
|
/
|
*
Issue #23181: More "codepoint" -> "code point".
Serhiy Storchaka
2015-01-18
1
-1/+1
*
|
Merge issue 19548 changes from 3.4
Nick Coghlan
2015-01-06
1
-41/+30
|
\
\
|
|
/
|
*
Issue 19548: update codecs module documentation
Nick Coghlan
2015-01-06
1
-41/+30
*
|
Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.
Serhiy Storchaka
2014-12-20
1
-0/+6
|
\
\
|
|
/
|
*
Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.
Serhiy Storchaka
2014-12-20
1
-1/+7
*
|
Issue #19676: Added the "namereplace" error handler.
Serhiy Storchaka
2014-11-25
1
-0/+3
*
|
Issue #22032: __qualname__ instead of __name__ is now always used to format
Serhiy Storchaka
2014-07-22
1
-2/+2
|
/
*
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
[next]