PythonExtra/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 22:33:01 +01:00
try:
zip
set
except NameError:
print("SKIP")
raise SystemExit
2017-01-30 22:33:01 +01:00
2014-01-13 03:31:00 +01:00
print(list(zip()))
2017-01-30 22:33:01 +01:00
print(list(zip([1], set([2, 3]))))