You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
8 lines
160 B
Python
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
|