diff options
Diffstat (limited to 'Lib/encodings/iso2022_jp_2.py')
-rw-r--r-- | Lib/encodings/iso2022_jp_2.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Lib/encodings/iso2022_jp_2.py b/Lib/encodings/iso2022_jp_2.py index 6171710..7a61018 100644 --- a/Lib/encodings/iso2022_jp_2.py +++ b/Lib/encodings/iso2022_jp_2.py @@ -1,12 +1,13 @@ # -# iso2022_jp_2.py: Python Unicode Codec for ISO_2022_JP_2 +# iso2022_jp_2.py: Python Unicode Codec for ISO2022_JP_2 # # Written by Hye-Shik Chang <perky@FreeBSD.org> -# $CJKCodecs: iso2022_jp_2.py,v 1.3 2004/01/17 11:26:10 perky Exp $ +# $CJKCodecs: iso2022_jp_2.py,v 1.2 2004/06/28 18:16:03 perky Exp $ # -from _codecs_iso2022_jp_2 import codec -import codecs +import _codecs_iso2022, codecs + +codec = _codecs_iso2022.getcodec('iso2022_jp_2') class Codec(codecs.Codec): encode = codec.encode @@ -30,4 +31,4 @@ class StreamWriter(Codec, codecs.StreamWriter): self.reset = __codec.reset def getregentry(): - return (Codec().encode,Codec().decode,StreamReader,StreamWriter) + return (codec.encode, codec.decode, StreamReader, StreamWriter) |