mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
There is no edge between loop statement and next after loop instruction when loop has at least one iteration so `continue` is marked as one more last instruction in the loop
7 lines
107 B
Python
7 lines
107 B
Python
import sys
|
|
|
|
for s in "abc":
|
|
if len(s) == 1:
|
|
continue
|
|
sys.exit(0)
|
|
raise Exception("the end") |