Python 3.8 while and whileTrue loops

This commit is contained in:
rocky
2022-06-16 15:42:51 -04:00
parent 7fb483c566
commit 7f798541f0
5 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
# 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