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