forked from VimPlug/jedi
Fix: Tuple unpacking to x[0] would raise bugs.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
|
||||
a, b = {'asdf': 3, 'b': 'str'}
|
||||
a
|
||||
|
||||
x = [1]
|
||||
x[0], b = {'a': 1, 'b': '2'}
|
||||
|
||||
Reference in New Issue
Block a user