Skip to content
Snippets Groups Projects
Commit 2e9e1498 authored by Damien George's avatar Damien George
Browse files

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

parent 6cfa61a4
No related branches found
No related tags found
No related merge requests found
# test array('q') and array('Q')
# test array types QqLl that require big-ints
try:
from array import array
......@@ -7,6 +7,9 @@ except ImportError:
print("SKIP")
sys.exit()
print(array('L', [0, 2**32-1]))
print(array('l', [-2**31, 0, 2**31-1]))
print(array('q'))
print(array('Q'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment