]> granicus.if.org Git - python/commit
Rip out all codecs that can't work in a unicode/bytes world:
authorWalter Dörwald <walter@livinglogic.de>
Tue, 12 Jun 2007 16:40:17 +0000 (16:40 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Tue, 12 Jun 2007 16:40:17 +0000 (16:40 +0000)
commit42748a8d6dc121d5311668a0fe005c277b7d0220
tree7c463d2780b8e6683e21848efac677f19daa30cb
parent6e8fcae38f119b95be0c707b7a44db209c485c84
Rip out all codecs that can't work in a unicode/bytes world:
base64, uu, zlib, rot_13, hex, quopri, bz2, string_escape.

However codecs.escape_encode() and codecs.escape_decode()
still exist, as they are used for pickling str8 objects
(so those two functions can go, when the str8 type is removed).
Doc/lib/libcodecs.tex
Lib/encodings/base64_codec.py [deleted file]
Lib/encodings/hex_codec.py [deleted file]
Lib/encodings/quopri_codec.py [deleted file]
Lib/encodings/rot_13.py [deleted file]
Lib/encodings/string_escape.py [deleted file]
Lib/encodings/uu_codec.py [deleted file]
Lib/encodings/zlib_codec.py [deleted file]
Lib/pickle.py
Lib/pickletools.py
Lib/test/test_codecs.py