From: Guido van Rossum Date: Tue, 28 Mar 2000 01:58:50 +0000 (+0000) Subject: MBCS codecs for Windows. Contributed by Mark Hammond. X-Git-Tag: v1.6a1~142 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1abd82c07dc087e10b7941b02ac34f0ab86cfbca;p=python MBCS codecs for Windows. Contributed by Mark Hammond. --- diff --git a/Lib/encodings/mbcs.py b/Lib/encodings/mbcs.py new file mode 100644 index 0000000000..b7fafbd764 --- /dev/null +++ b/Lib/encodings/mbcs.py @@ -0,0 +1,37 @@ +""" Python 'mbcs' Codec for Windows + + +Cloned by Mark Hammond (mhammond@skippinet.com.au) from ascii.py, +which was written by Marc-Andre Lemburg (mal@lemburg.com). + +(c) Copyright CNRI, All Rights Reserved. NO WARRANTY. + +""" +import codecs + +### Codec APIs + +class Codec(codecs.Codec): + + # Note: Binding these as C functions will result in the class not + # converting them to methods. This is intended. + encode = codecs.mbcs_encode + decode = codecs.mbcs_decode + +class StreamWriter(Codec,codecs.StreamWriter): + pass + +class StreamReader(Codec,codecs.StreamReader): + pass + +class StreamConverter(StreamWriter,StreamReader): + + encode = codecs.mbcs_decode + decode = codecs.mbcs_encode + +### encodings module API + +def getregentry(): + + return (Codec.encode,Codec.decode,StreamReader,StreamWriter) +