From 333da5f000a3d5da1b58dd7ca0ebc5237447949e Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 7 Dec 2004 14:08:24 +0000 Subject: [PATCH] remove the other half of one of the regsub-related comments; the other half was removed in revision 1.25 --- Lib/formatter.py | 1 - 1 file changed, 1 deletion(-) 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()) -- 2.50.0