dd5d7c86d2
This can be enforced by pre-commit, but correct it separately to make it easier to review.
9 lines
138 B
Python
9 lines
138 B
Python
# test builtin chr (whether or not we support unicode)
|
|
|
|
print(chr(65))
|
|
|
|
try:
|
|
chr(0x110000)
|
|
except ValueError:
|
|
print("ValueError")
|