kuroko/test/testElseWithNoExcept.krk

10 lines
194 B
Python
Raw Normal View History

try:
try:
raise ValueError()
else:
print("oh no (else should not run)")
finally:
print('finally')
except ValueError:
print("value error caught in outer")