mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
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
|