1
0
forked from VimPlug/jedi

Fix tuple unpacking for special case

This commit is contained in:
Dave Halter
2019-05-31 17:07:51 +02:00
parent cdc9520c9d
commit d9332aec8c
3 changed files with 9 additions and 1 deletions

View File

@@ -79,6 +79,11 @@ for a3, b3 in (1,""), (1,""), (1,""):
a3
#? str()
b3
for (a3, b3) in (1,""), (1,""), (1,""):
#? int()
a3
#? str()
b3
for a4, (b4, c4) in (1,("", list)), (1,("", list)):
#? int()