Files
python-uncompyle6/test/simple_source/bug35/03_while-if-break.py
2017-04-19 05:08:48 -04:00

15 lines
295 B
Python

# Python 3.5 and 3.6 break inside a
# while True and if / break
def display_date(loop):
while True:
if loop.time():
break
x = 5
# Another loop to test 3.5 ifelsestmtl grammar rule
while loop:
if x:
True
else:
True