Files
python-uncompyle6/test/simple_source/bug35/03_while-if-break.py
2017-01-08 15:54:49 -05:00

8 lines
160 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