2014-06-05 18:51:03 +01:00
|
|
|
# anything above 0xa0 is printed as Unicode by CPython
|
2014-06-13 19:23:00 +01:00
|
|
|
# the abobe is CPython implementation detail, stick to ASCII
|
|
|
|
for c in range(0x80):
|
2014-04-08 02:42:50 +01:00
|
|
|
print("0x%02x: %s" % (c, repr(chr(c))))
|