2017-01-07 01:13:40 +03:00
|
|
|
try:
|
2021-04-23 12:26:42 -07:00
|
|
|
from uarray import array
|
2017-01-07 01:13:40 +03:00
|
|
|
except ImportError:
|
2021-04-23 12:26:42 -07:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2015-03-25 23:33:48 +00:00
|
|
|
|
|
|
|
# construct from something with unknown length (requires generators)
|
|
|
|
print(array('i', (i for i in range(10))))
|