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

print(ord('a'))

try:
    ord('')
except TypeError:
    print("TypeError")