mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
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