mirror of https://github.com/python/cpython
gh-94713 - Replacing while 1 with while True (#94714)
This commit is contained in:
parent
e39ce7d487
commit
cceac5dd06
|
@ -561,7 +561,7 @@ def _platform(*args):
|
|||
platform = platform.replace('unknown', '')
|
||||
|
||||
# Fold '--'s and remove trailing '-'
|
||||
while 1:
|
||||
while True:
|
||||
cleaned = platform.replace('--', '-')
|
||||
if cleaned == platform:
|
||||
break
|
||||
|
|
Loading…
Reference in New Issue