From: Guido van Rossum Date: Tue, 8 Apr 1997 19:46:53 +0000 (+0000) Subject: while (1) -> while 1. Sorry. X-Git-Tag: v1.5a1~202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ccd2f153f2c8f63b08b368ebbed21c5e29be505;p=thirdparty%2FPython%2Fcpython.git while (1) -> while 1. Sorry. --- diff --git a/Lib/uu.py b/Lib/uu.py index a9e1c5b86357..23331aa2d0cc 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'