fixed for loop in exception issue combined with usage of an exception variable

This commit is contained in:
Dave Halter
2014-06-22 23:32:07 +02:00
parent 401914e91c
commit e106e4ffc8
2 changed files with 6 additions and 1 deletions

View File

@@ -342,6 +342,10 @@ try:
except MyException as e:
#? ['my_attr']
e.my_attr
#? 22 ['my_attr']
for x in e.my_attr:
pass
# -----------------
# continuations