forked from VimPlug/jedi
30 lines
313 B
Python
30 lines
313 B
Python
def openbrace():
|
|
asdf = 3
|
|
asdf
|
|
asdf(
|
|
#? ['real']
|
|
asdf.real
|
|
return 1
|
|
|
|
#? ['real']
|
|
openbrace().real
|
|
|
|
blub([
|
|
#? ['real']
|
|
openbrace().real
|
|
|
|
def indentfault():
|
|
asd(
|
|
indentback
|
|
|
|
#? []
|
|
indentfault().
|
|
|
|
def openbrace2():
|
|
asd(
|
|
def normalfunc():
|
|
return 1
|
|
|
|
#? ['real']
|
|
normalfunc().real
|