1f53ff61ff
For consistency with all of the other tests that are named builtin_XXX.py.
10 lines
133 B
Python
10 lines
133 B
Python
try:
|
|
zip
|
|
set
|
|
except NameError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
print(list(zip()))
|
|
print(list(zip([1], set([2, 3]))))
|