encode(): Handle Latin-1 input characters better.

This commit is contained in:
Fred Drake 2001-04-21 06:01:53 +00:00
parent bda05564de
commit e99b97e58a
1 changed files with 7 additions and 3 deletions

View File

@ -35,15 +35,19 @@ def decode(s):
_charmap = {}
for c in map(chr, range(256)):
_charmap[c] = c
for c in range(128):
_charmap[chr(c)] = chr(c)
_charmap[unichr(c + 128)] = chr(c + 128)
_charmap["\n"] = r"\n"
_charmap["\\"] = r"\\"
del c
_null_join = ''.join
def encode(s):
return _null_join(map(_charmap.get, s))
try:
return _null_join(map(_charmap.get, s))
except TypeError:
raise Exception("could not encode %r: %r" % (s, map(_charmap.get, s)))
class ESISReader(xml.sax.xmlreader.XMLReader):