]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
remove the other half of one of the regsub-related comments; the other
authorFred Drake <fdrake@acm.org>
Tue, 7 Dec 2004 14:08:24 +0000 (14:08 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 7 Dec 2004 14:08:24 +0000 (14:08 +0000)
half was removed in revision 1.25

Lib/formatter.py

index 261090c837192340b952353f7bd8a13f4203001d..fa2b38938ae6e9b228be32dad2aeb903516d920a 100644 (file)
@@ -176,7 +176,6 @@ class AbstractFormatter:
 
     def add_flowing_data(self, data):
         if not data: return
-        # The following looks a bit convoluted but is a great improvement over
         prespace = data[:1].isspace()
         postspace = data[-1:].isspace()
         data = " ".join(data.split())