1
0
forked from VimPlug/jedi

Fix contextualizing of subscriptlist

This commit is contained in:
Dave Halter
2019-12-01 11:07:18 +01:00
parent b13c4c446f
commit 378712dbc1
2 changed files with 11 additions and 1 deletions

View File

@@ -335,6 +335,11 @@ some_lst2[3]
#? int() str()
some_lst2[2]
some_lst3 = []
some_lst3[0] = 3
some_lst3[:] = '' # Is ignored for now.
#? int()
some_lst3[0]
# -----------------
# set setitem/other modifications (should not work)
# -----------------