diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basics/tests/zip.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/basics/tests/zip.py b/tests/basics/tests/zip.py new file mode 100644 index 0000000000..c0109094f4 --- /dev/null +++ b/tests/basics/tests/zip.py @@ -0,0 +1,2 @@ +print(list(zip())) +print(list(zip([1], {2,3}))) |