2017-01-06 17:13:40 -05:00
|
|
|
try:
|
2019-10-22 02:33:23 -04:00
|
|
|
from uarray import array
|
2017-01-06 17:13:40 -05:00
|
|
|
except ImportError:
|
2019-10-22 02:33:23 -04:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2015-03-25 19:33:48 -04:00
|
|
|
|
|
|
|
# construct from something with unknown length (requires generators)
|
|
|
|
print(array('i', (i for i in range(10))))
|