summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-04-08 19:46:53 (GMT)
committerGuido van Rossum <guido@python.org>1997-04-08 19:46:53 (GMT)
commit3ccd2f153f2c8f63b08b368ebbed21c5e29be505 (patch)
tree9132028914e49d3258b8b980965433e0ee8d51bd /Lib
parent2ebaa1796e654e94617745ba22fd0ccaf70c91d9 (diff)
downloadcpython-3ccd2f153f2c8f63b08b368ebbed21c5e29be505.zip
cpython-3ccd2f153f2c8f63b08b368ebbed21c5e29be505.tar.gz
cpython-3ccd2f153f2c8f63b08b368ebbed21c5e29be505.tar.bz2
while (1) -> while 1. Sorry.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/uu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/uu.py b/Lib/uu.py
index a9e1c5b..23331aa 100755
--- a/Lib/uu.py
+++ b/Lib/uu.py
@@ -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'