mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
MICROPY_LONGINT_IMPL_LONGLONG doesn't have overflow detection, so just parsing a large number won't give an error, we need to print it out to check that the whole number was parsed.
3 lines
119 B
Python
3 lines
119 B
Python
# Check whether arbitrary-precision integers (MPZ) are supported
|
|
print(1000000000000000000000000000000000000000000000)
|