PythonExtra/tests/basics/builtin_zip.py
Damien George 1f53ff61ff tests/basics: Rename remaining tests that are for built-in functions.
For consistency with all of the other tests that are named builtin_XXX.py.
2018-02-07 15:55:52 +11:00

10 lines
133 B
Python

try:
zip
set
except NameError:
print("SKIP")
raise SystemExit
print(list(zip()))
print(list(zip([1], set([2, 3]))))