From: Fred Drake Date: Tue, 7 Dec 2004 14:08:24 +0000 (+0000) Subject: remove the other half of one of the regsub-related comments; the other X-Git-Tag: v2.5a0~2279 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=333da5f000a3d5da1b58dd7ca0ebc5237447949e;p=thirdparty%2FPython%2Fcpython.git remove the other half of one of the regsub-related comments; the other half was removed in revision 1.25 --- diff --git a/Lib/formatter.py b/Lib/formatter.py index 261090c83719..fa2b38938ae6 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())