12 lines
278 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
try:
from uarray import array
except ImportError:
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))))