You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 08:49:51 +08:00
15 lines
295 B
Python
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
|