Files
python-uncompyle6/test/simple_source/bug38/00_while_true_pass.py
2022-06-16 15:42:51 -04:00

7 lines
158 B
Python

# The 3.8 bugs were in detecting
# 1) while True: pass
# 2) confusing the "if" ending in a loop jump with a "while"
if __name__:
while True:
pass