blob: c305b7f011d1f704ad0dddf74912e30f62c10f6c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
# construct from something with unknown length (requires generators)
print(array('i', (i for i in range(10))))
|