Files
python-uncompyle6/test/simple_source/looping/03_whileelse_bug.py
2018-01-11 21:52:33 -05:00

10 lines
189 B
Python

# From idlelib/PyParse.py
# Bug is "if" inside a nested while/else.
def _study1(i, n):
while i:
while i:
i = 0
else:
if i:
i = 1