Home | History | Annotate | Download | only in scripts

Lines Matching full:charcode

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