Home | History | Annotate | Download | only in scripts

Lines Matching full:charcode

29         name,charcode,comment = m.groups()
30 d[name] = charcode,comment
38 for name, (charcode,comment) in items:
39 if charcode[:2] == '&#':
40 code = int(charcode[2:-1])
42 charcode = r"'\%o'" % code
44 charcode = repr(charcode)
46 charcode = repr(charcode)
48 f.write(" '%s':\t%s, \t# %s\n" % (name,charcode,comment))