summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-01-02 19:50:36 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-01-02 19:50:36 (GMT)
commitb6f424043d267eac9c870d9991a6453a821ff81d (patch)
treefdd0ffec85c52515725efc3a31aaf7cc1ee92df9 /Misc
parentc224458ef699e0306162a351ca7454b4d486c635 (diff)
downloadcpython-b6f424043d267eac9c870d9991a6453a821ff81d.zip
cpython-b6f424043d267eac9c870d9991a6453a821ff81d.tar.gz
cpython-b6f424043d267eac9c870d9991a6453a821ff81d.tar.bz2
Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from
the codec aliases. They are still accessible via codecs.lookup().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 50da49c..2029f1b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,9 @@ Core and Builtins
Library
-------
+- Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from
+ the codec aliases. They are still accessible via codecs.lookup().
+
- Issue #10801: In zipfile, support different encodings for the header and
the filenames.