1 parent aee723e commit 33b8e65Copy full SHA for 33b8e65
1 file changed
tests/basics/zip.py
@@ -1,2 +1,10 @@
1
+try:
2
+ zip
3
+ set
4
+except NameError:
5
+ print("SKIP")
6
+ import sys
7
+ sys.exit()
8
+
9
print(list(zip()))
-print(list(zip([1], {2,3})))
10
+print(list(zip([1], set([2, 3]))))
0 commit comments