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

print(chr(65))

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