diff options
author | Guido van Rossum <guido@python.org> | 1997-04-08 19:46:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-08 19:46:53 (GMT) |
commit | 3ccd2f153f2c8f63b08b368ebbed21c5e29be505 (patch) | |
tree | 9132028914e49d3258b8b980965433e0ee8d51bd /Lib/uu.py | |
parent | 2ebaa1796e654e94617745ba22fd0ccaf70c91d9 (diff) | |
download | cpython-3ccd2f153f2c8f63b08b368ebbed21c5e29be505.zip cpython-3ccd2f153f2c8f63b08b368ebbed21c5e29be505.tar.gz cpython-3ccd2f153f2c8f63b08b368ebbed21c5e29be505.tar.bz2 |
while (1) -> while 1. Sorry.
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-x | Lib/uu.py | 2 |
1 files changed, 1 insertions, 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' |