0001 """ Python Character Mapping Codec generated from 'CP1252.TXT' with gencodec.py. 0002 0003 Written by Marc-Andre Lemburg (mal@lemburg.com). 0004 0005 (c) Copyright CNRI, All Rights Reserved. NO WARRANTY. 0006 (c) Copyright 2000 Guido van Rossum. 0007 0008 """#" 0009 0010 import codecs 0011 0012 ### Codec APIs 0013 0014 class Codec(codecs.Codec): 0015 0016 def encode(self,input,errors='strict'): 0017 0018 return codecs.charmap_encode(input,errors,encoding_map) 0019 0020 def decode(self,input,errors='strict'): 0021 0022 return codecs.charmap_decode(input,errors,decoding_map) 0023 0024 class StreamWriter(Codec,codecs.StreamWriter): 0025 pass 0026 0027 class StreamReader(Codec,codecs.StreamReader): 0028 pass 0029 0030 ### encodings module API 0031 0032 def getregentry(): 0033 0034 return (Codec().encode,Codec().decode,StreamReader,StreamWriter) 0035 0036 ### Decoding Map 0037 0038 decoding_map = codecs.make_identity_dict(range(256)) 0039 decoding_map.update({ 0040 0x0080: 0x20ac, # EURO SIGN 0041 0x0081: None, # UNDEFINED 0042 0x0082: 0x201a, # SINGLE LOW-9 QUOTATION MARK 0043 0x0083: 0x0192, # LATIN SMALL LETTER F WITH HOOK 0044 0x0084: 0x201e, # DOUBLE LOW-9 QUOTATION MARK 0045 0x0085: 0x2026, # HORIZONTAL ELLIPSIS 0046 0x0086: 0x2020, # DAGGER 0047 0x0087: 0x2021, # DOUBLE DAGGER 0048 0x0088: 0x02c6, # MODIFIER LETTER CIRCUMFLEX ACCENT 0049 0x0089: 0x2030, # PER MILLE SIGN 0050 0x008a: 0x0160, # LATIN CAPITAL LETTER S WITH CARON 0051 0x008b: 0x2039, # SINGLE LEFT-POINTING ANGLE QUOTATION MARK 0052 0x008c: 0x0152, # LATIN CAPITAL LIGATURE OE 0053 0x008d: None, # UNDEFINED 0054 0x008e: 0x017d, # LATIN CAPITAL LETTER Z WITH CARON 0055 0x008f: None, # UNDEFINED 0056 0x0090: None, # UNDEFINED 0057 0x0091: 0x2018, # LEFT SINGLE QUOTATION MARK 0058 0x0092: 0x2019, # RIGHT SINGLE QUOTATION MARK 0059 0x0093: 0x201c, # LEFT DOUBLE QUOTATION MARK 0060 0x0094: 0x201d, # RIGHT DOUBLE QUOTATION MARK 0061 0x0095: 0x2022, # BULLET 0062 0x0096: 0x2013, # EN DASH 0063 0x0097: 0x2014, # EM DASH 0064 0x0098: 0x02dc, # SMALL TILDE 0065 0x0099: 0x2122, # TRADE MARK SIGN 0066 0x009a: 0x0161, # LATIN SMALL LETTER S WITH CARON 0067 0x009b: 0x203a, # SINGLE RIGHT-POINTING ANGLE QUOTATION MARK 0068 0x009c: 0x0153, # LATIN SMALL LIGATURE OE 0069 0x009d: None, # UNDEFINED 0070 0x009e: 0x017e, # LATIN SMALL LETTER Z WITH CARON 0071 0x009f: 0x0178, # LATIN CAPITAL LETTER Y WITH DIAERESIS 0072 }) 0073 0074 ### Encoding Map 0075 0076 encoding_map = codecs.make_encoding_map(decoding_map) 0077
Generated by PyXR 0.9.4