mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
58 lines
614 B
Python
58 lines
614 B
Python
from a import (b
|
|
def blub():
|
|
return 0
|
|
def openbrace():
|
|
asdf = 3
|
|
asdf
|
|
asdf(
|
|
#? int()
|
|
asdf
|
|
return 1
|
|
|
|
#? int()
|
|
openbrace()
|
|
|
|
blub([
|
|
#? int()
|
|
openbrace()
|
|
|
|
def indentfault():
|
|
asd(
|
|
indentback
|
|
|
|
#? []
|
|
indentfault().
|
|
|
|
def openbrace2():
|
|
asd(
|
|
def normalfunc():
|
|
return 1
|
|
|
|
##? int()
|
|
normalfunc()
|
|
|
|
|
|
# first part not complete (raised errors)
|
|
if a
|
|
a
|
|
else:
|
|
#? ['AttributeError']
|
|
AttributeError
|
|
|
|
try
|
|
#? ['AttributeError']
|
|
except AttributeError
|
|
pass
|
|
finally:
|
|
pass
|
|
|
|
#? ['isinstance']
|
|
if isi
|
|
try:
|
|
except TypeError:
|
|
#? str()
|
|
""
|
|
|
|
#? ['lala']
|
|
isinstance())
|