diff options
author | Fred Drake <fdrake@acm.org> | 2004-12-07 14:08:24 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-12-07 14:08:24 (GMT) |
commit | 333da5f000a3d5da1b58dd7ca0ebc5237447949e (patch) | |
tree | ef3116b33dafa6cc9a3fc9565fd53c26f0612ac9 | |
parent | 3557f42658a9a69461d5f2af7c8751ba201e53e1 (diff) | |
download | cpython-333da5f000a3d5da1b58dd7ca0ebc5237447949e.zip cpython-333da5f000a3d5da1b58dd7ca0ebc5237447949e.tar.gz cpython-333da5f000a3d5da1b58dd7ca0ebc5237447949e.tar.bz2 |
remove the other half of one of the regsub-related comments; the other
half was removed in revision 1.25
-rw-r--r-- | Lib/formatter.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/formatter.py b/Lib/formatter.py index 261090c..fa2b389 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()) |