mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
46 lines
465 B
Python
46 lines
465 B
Python
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
|
|
|