2017-01-06 22:13:40 +00:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 18:03:01 +01:00
|
|
|
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))))
|