summaryrefslogtreecommitdiff
path: root/Lib/uu.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-04-08 19:46:53 +0000
committerGuido van Rossum <guido@python.org>1997-04-08 19:46:53 +0000
commit71d37b9d129ed97b948462c129a87868d023f87f (patch)
tree6c25e081129c6dc8a9da6905dfee6f61661e4eca /Lib/uu.py
parentef428b7d21b2d92551fcf6e292a4244aa6077577 (diff)
downloadcpython-71d37b9d129ed97b948462c129a87868d023f87f.tar.gz
while (1) -> while 1. Sorry.
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-xLib/uu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/uu.py b/Lib/uu.py
index a9e1c5b863..23331aa2d0 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'