Files
python-uncompyle6/test/simple_source/bug35/02_while_and.py
2017-12-07 15:25:32 -05:00

5 lines
124 B
Python

# Bug in 3.5 cmd.py
# Bug is "while and" not getting handled properly
i, n = 0, 5
while i < n and __file__ in (1,2): i += 1