mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
de571a2662
fix while_try_while vm err
13 lines
160 B
Python
13 lines
160 B
Python
|
|
|
|
while True:
|
|
print("before try")
|
|
try:
|
|
print("after try")
|
|
while True:
|
|
raise
|
|
except:
|
|
break
|
|
|
|
print("after while")
|