Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
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))))