Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
2e9e1498
Commit
2e9e1498
authored
May 09, 2017
by
Damien George
Browse files
tests/basics: Update array test for big-int with lL typecodes.
parent
6cfa61a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/basics/array_intbig.py
View file @
2e9e1498
# 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'
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment