aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
diff options
context:
space:
mode:
authorJohn R. Lenton2014-01-13 02:31:00 +0000
committerJohn R. Lenton2014-01-13 02:31:00 +0000
commit07205ec323ca98d1c23af51e099119954d0fe7a4 (patch)
tree7752e520c792f47c43a005782bde9f7386fd0a2e /tests/basics
parent34f813ee29c7191e3de455c3fc9c788496e3b29e (diff)
added zip()
Diffstat (limited to 'tests/basics')
-rw-r--r--tests/basics/tests/zip.py2
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 000000000..c0109094f
--- /dev/null
+++ b/tests/basics/tests/zip.py
@@ -0,0 +1,2 @@
+print(list(zip()))
+print(list(zip([1], {2,3})))