diff options
author | Georg Brandl <georg@python.org> | 2008-01-21 17:22:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-21 17:22:06 (GMT) |
commit | 1ea8cb49ed728dadec11d0a554431c566fdc5a56 (patch) | |
tree | c4e487e2d224711791204e45e7bd9e2acc36b5a1 /Lib/formatter.py | |
parent | af67f303d8077b3b08e4baa03feae5f618fae757 (diff) | |
download | cpython-1ea8cb49ed728dadec11d0a554431c566fdc5a56.zip cpython-1ea8cb49ed728dadec11d0a554431c566fdc5a56.tar.gz cpython-1ea8cb49ed728dadec11d0a554431c566fdc5a56.tar.bz2 |
#1726198: replace while 1: fp.readline() with file iteration.
Diffstat (limited to 'Lib/formatter.py')
-rw-r--r-- | Lib/formatter.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/formatter.py b/Lib/formatter.py index fa2b389..834b560 100644 --- a/Lib/formatter.py +++ b/Lib/formatter.py @@ -432,10 +432,7 @@ def test(file = None): fp = open(sys.argv[1]) else: fp = sys.stdin - while 1: - line = fp.readline() - if not line: - break + for line in fp: if line == '\n': f.end_paragraph(1) else: |