ニュース

普段、 Pythonでは何気なくimportしてpackage/ moduleを使っていますが、 codecは複雑な実装になっています。 どうなっているかというと、 ソースパッケージにおいてLibの下にある、 Pythonで実装されたcodecはencodingを管理するためのモジュールで、 encodingの名前と実装のマッピングはencodingsパッケージで行われています。
Those APIs are used by pickle and provide a great way to handle escaped bytes sequences in much the same way as str (bytes)/repr (bytes) works. In Python 2, these were used by the string_escape codec, ...