Fix: Tuple unpacking to x[0] would raise bugs.

This commit is contained in:
Dave Halter
2015-11-24 01:27:23 +01:00
parent cf4c2cb198
commit 8dee92bcc5
3 changed files with 15 additions and 8 deletions

View File

@@ -1,3 +1,6 @@
a, b = {'asdf': 3, 'b': 'str'}
a
x = [1]
x[0], b = {'a': 1, 'b': '2'}