idlelib: replace 'while 1' with 'while True' (#94827)

This commit is contained in:
Terry Jan Reedy 2022-07-13 21:09:07 -04:00 committed by GitHub
parent 967da5febb
commit 6a15f918b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View file

@ -237,9 +237,9 @@ class HyperParser:
last_identifier_pos = pos
postdot_phase = True
while 1:
while True:
# Eat whitespaces, comments, and if postdot_phase is False - a dot
while 1:
while True:
if pos>brck_limit and rawtext[pos-1] in self._whitespace_chars:
# Eat a whitespace
pos -= 1