summaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
authorJohn R. Lenton <jlenton@gmail.com>2014-01-13 02:31:00 +0000
committerJohn R. Lenton <jlenton@gmail.com>2014-01-13 02:31:00 +0000
commit07205ec323ca98d1c23af51e099119954d0fe7a4 (patch)
tree7752e520c792f47c43a005782bde9f7386fd0a2e /tests
parent34f813ee29c7191e3de455c3fc9c788496e3b29e (diff)
downloadmicropython-07205ec323ca98d1c23af51e099119954d0fe7a4.tar.gz
micropython-07205ec323ca98d1c23af51e099119954d0fe7a4.zip
added zip()
Diffstat (limited to 'tests')
-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 0000000000..c0109094f4
--- /dev/null
+++ b/tests/basics/tests/zip.py
@@ -0,0 +1,2 @@
+print(list(zip()))
+print(list(zip([1], {2,3})))