diff options
author | Guido van Rossum <guido@python.org> | 2000-03-28 01:58:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-28 01:58:50 (GMT) |
commit | 1abd82c07dc087e10b7941b02ac34f0ab86cfbca (patch) | |
tree | 84003a0720a33091b00524daae9ad62f5f2be12c /Lib/encodings | |
parent | e187b0eb20efe563c74a90d19f432c7b55e7ca5a (diff) | |
download | cpython-1abd82c07dc087e10b7941b02ac34f0ab86cfbca.zip cpython-1abd82c07dc087e10b7941b02ac34f0ab86cfbca.tar.gz cpython-1abd82c07dc087e10b7941b02ac34f0ab86cfbca.tar.bz2 |
MBCS codecs for Windows. Contributed by Mark Hammond.
Diffstat (limited to 'Lib/encodings')
-rw-r--r-- | Lib/encodings/mbcs.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Lib/encodings/mbcs.py b/Lib/encodings/mbcs.py new file mode 100644 index 0000000..b7fafbd --- /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) + |