Kaydet (Commit) 3ccd2f15 authored tarafından Guido van Rossum's avatar Guido van Rossum

while (1) -> while 1. Sorry.

üst 2ebaa179
...@@ -87,7 +87,7 @@ def decode(in_file, out_file=None, mode=None): ...@@ -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 # Read until a begin is encountered or we've exhausted the file
# #
while (1): while 1:
hdr = in_file.readline() hdr = in_file.readline()
if not hdr: if not hdr:
raise Error, 'No valid begin line found in input file' raise Error, 'No valid begin line found in input file'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment