summaryrefslogtreecommitdiff
path: root/tests/basics/builtin_chr.py
blob: c1a9f7053074ca5edb313aef31195b932bd29d59 (plain)
1
2
3
4
5
6
7
8
# test builtin chr (whether or not we support unicode)

print(chr(65))

try:
    chr(0x110000)
except ValueError:
    print("ValueError")