]> granicus.if.org Git - python/commitdiff
while (1) -> while 1. Sorry.
authorGuido van Rossum <guido@python.org>
Tue, 8 Apr 1997 19:46:53 +0000 (19:46 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 8 Apr 1997 19:46:53 +0000 (19:46 +0000)
Lib/uu.py

index a9e1c5b8635756e844a82f2682883843eee718ed..23331aa2d0cc793b003fa0c6b54e642626130efe 100755 (executable)
--- 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'