mirror of
https://github.com/micropython/micropython.git
synced 2026-05-01 21:30:14 +02:00
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]))))
|