multi line funcs with comments don't raise an error anymore - fixes jedi-vim issue 29

This commit is contained in:
David Halter
2012-11-12 18:07:25 +01:00
parent 80609a676b
commit 5423dda8d3
3 changed files with 17 additions and 1 deletions

View File

@@ -38,6 +38,14 @@ def variable_rename(param):
#? int()
variable_rename(1)
def multi_line_func(a, # comment blabla
b):
return b
#? str()
multi_line_func(1,'')
# -----------------
# double execution
# -----------------