We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f420c0 commit df02f56Copy full SHA for df02f56
1 file changed
tests/basics/int_big1.py
@@ -99,3 +99,7 @@
99
# sys.maxsize is a constant mpz, so test it's compatible with dynamic ones
100
import sys
101
print(sys.maxsize + 1 - 1 == sys.maxsize)
102
+
103
+# test extraction of big int value via mp_obj_get_int_maybe
104
+x = 1 << 70
105
+print('a' * (x + 4 - x))
0 commit comments