Skip to content

Commit 33b8e65

Browse files
committed
tests/basics/zip: Make skippable.
1 parent aee723e commit 33b8e65

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

tests/basics/zip.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1+
try:
2+
zip
3+
set
4+
except NameError:
5+
print("SKIP")
6+
import sys
7+
sys.exit()
8+
19
print(list(zip()))
2-
print(list(zip([1], {2,3})))
10+
print(list(zip([1], set([2, 3]))))

0 commit comments

Comments
 (0)