1
0
forked from VimPlug/jedi

plus on numbers is now basically working

This commit is contained in:
Dave Halter
2014-03-09 12:27:03 +01:00
parent 3b372e2fe2
commit 70e1970f40
2 changed files with 31 additions and 12 deletions

View File

@@ -7,12 +7,12 @@ x = [1, 'a', 1.0]
#? int() str() float()
x[12]
#? str()
#? float()
x[1 + 1]
index = 0 + 2
index = 0 + 1
#? float()
#? str()
x[index]
@@ -22,4 +22,4 @@ def calculate(number):
constant = 1
#? float()
x[calculate(2)]
x[calculate(1)]