diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-02 13:13:29 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-02 13:13:29 +0000 |
commit | 09e1f43200ec28082456042a58d9f39f483f3ad0 (patch) | |
tree | a61fff4a0fbad891177d64bf311c9cb0882b4e1b /tests/basics/seq-unpack.py | |
parent | cd82e02e84df5f9f2f3082d865beae25217af2a1 (diff) | |
parent | ea2509d92cbb222854ceb0b323b616b807dd221b (diff) |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'tests/basics/seq-unpack.py')
-rw-r--r-- | tests/basics/seq-unpack.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/basics/seq-unpack.py b/tests/basics/seq-unpack.py new file mode 100644 index 000000000..af8b998d0 --- /dev/null +++ b/tests/basics/seq-unpack.py @@ -0,0 +1,36 @@ +# Basics +a, b = 1, 2 +print(a, b) +a, b = (1, 2) +print(a, b) +(a, b) = 1, 2 +print(a, b) +(a, b) = (1, 2) +print(a, b) + +# Tuples/lists are optimized +a, b = [1, 2] +print(a, b) +[a, b] = 100, 200 +print(a, b) + +try: + a, b, c = (1, 2) +except ValueError: + print("ValueError") +try: + a, b, c = [1, 2, 3, 4] +except ValueError: + print("ValueError") + +# Generic iterable object +a, b, c = range(3) +print(a, b, c) +try: + a, b, c = range(2) +except ValueError: + print("ValueError") +try: + a, b, c = range(4) +except ValueError: + print("ValueError") |