Files
openide/python/testData/refactoring/extractmethod/InterruptedOuterLoop.before.py
Semyon Proshev 42e4964191 Visit else in while in any case even if condition is True (PY-28972)
But when condition is `True`, edge to `else` is not created.
2018-03-26 19:36:15 +03:00

7 lines
97 B
Python

while True:
<selection>
while True:
pass
else:
break
</selection>