Browse Source

tests/basics: Update array test for big-int with lL typecodes.

pull/3074/head
Damien George 8 years ago
parent
commit
2e9e14980d
  1. 5
      tests/basics/array_intbig.py

5
tests/basics/array_intbig.py

@ -1,4 +1,4 @@
# test array('q') and array('Q') # test array types QqLl that require big-ints
try: try:
from array import array from array import array
@ -7,6 +7,9 @@ except ImportError:
print("SKIP") print("SKIP")
sys.exit() sys.exit()
print(array('L', [0, 2**32-1]))
print(array('l', [-2**31, 0, 2**31-1]))
print(array('q')) print(array('q'))
print(array('Q')) print(array('Q'))

Loading…
Cancel
Save