mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
while (1) -> while 1. Sorry.
This commit is contained in:
parent
2ebaa1796e
commit
3ccd2f153f
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ def decode(in_file, out_file=None, mode=None):
|
|||
#
|
||||
# Read until a begin is encountered or we've exhausted the file
|
||||
#
|
||||
while (1):
|
||||
while 1:
|
||||
hdr = in_file.readline()
|
||||
if not hdr:
|
||||
raise Error, 'No valid begin line found in input file'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue