summaryrefslogtreecommitdiff
path: root/Lib/formatter.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-12-07 14:08:24 +0000
committerFred Drake <fdrake@acm.org>2004-12-07 14:08:24 +0000
commit333da5f000a3d5da1b58dd7ca0ebc5237447949e (patch)
treeef3116b33dafa6cc9a3fc9565fd53c26f0612ac9 /Lib/formatter.py
parent3557f42658a9a69461d5f2af7c8751ba201e53e1 (diff)
downloadcpython-git-333da5f000a3d5da1b58dd7ca0ebc5237447949e.tar.gz
remove the other half of one of the regsub-related comments; the other
half was removed in revision 1.25
Diffstat (limited to 'Lib/formatter.py')
-rw-r--r--Lib/formatter.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/formatter.py b/Lib/formatter.py
index 261090c837..fa2b38938a 100644
--- a/Lib/formatter.py
+++ b/Lib/formatter.py
@@ -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())