-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python-spec #8
Comments
|
|
|
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In [71]: chr(65536**9)
OverflowError Traceback (most recent call last)
in
----> 1 chr(65536**9)
OverflowError: Python int too large to convert to C long
In [72]: chr(U.imax)
ValueError Traceback (most recent call last)
in
----> 1 chr(U.imax)
ValueError: chr() arg not in range(0x110000)
The text was updated successfully, but these errors were encountered: