circuitpython/tests/basics/builtin_zip.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
133 B
Python
Raw Permalink Normal View History

2017-01-30 16:33:01 -05:00
try:
zip
set
except NameError:
print("SKIP")
raise SystemExit
2017-01-30 16:33:01 -05:00
2014-01-12 21:31:00 -05:00
print(list(zip()))
2017-01-30 16:33:01 -05:00
print(list(zip([1], set([2, 3]))))