fix a little error that caused the completion not to work with if/try statements

This commit is contained in:
David Halter
2012-06-24 20:19:19 +02:00
parent 77698599f4
commit cffa236fc2
2 changed files with 23 additions and 2 deletions

View File

@@ -27,3 +27,19 @@ def normalfunc():
##? ['real']
normalfunc().real
# first part not complete (raised errors)
if a
a
else:
#? ['AttributeError']
AttributeError
try
#? ['AttributeError']
except AttributeError
pass
finally:
pass