summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/string-repr.py
blob: ba8dbe6d1c6af1340c787c0d8fb92ff4bba97ec3 (plain) (blame)
1
2
3
# anything above 0xa0 is printed as Unicode by CPython3.3
for c in range(0xa1):
    print("0x%02x: %s" % (c, repr(chr(c))))