kuroko/test/testElseWithNoExcept.krk
2023-11-24 18:32:16 +09:00

10 lines
194 B
Python

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