Files
python-uncompyle6/test/simple_source/bug38/03_while_bug.py
2024-07-13 11:58:27 -04:00

10 lines
193 B
Python

# See https://github.com/rocky/python-uncompyle6/issues/498
# Bug was in not allowing _stmts in whilestmt38
import time
r = 0
while r == 1:
print(time.time())
if r == 1:
r = 0