From 9712acf467b35d2aea82cb26e30440e909a7a9a6 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 26 Jan 2005 14:48:21 +0000 Subject: [PATCH] Removed wrapLines, which isn't used anywhere. --- src/utils.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/utils.py b/src/utils.py index e570633fb..b291d1c04 100644 --- a/src/utils.py +++ b/src/utils.py @@ -336,13 +336,6 @@ def unCommaThe(s): else: return s -def wrapLines(s): - """Word wraps several paragraphs in a string s.""" - L = [] - for line in s.splitlines(): - L.append(textwrap.fill(line)) - return '\n'.join(L) - def ellipsisify(s, n): """Returns a shortened version of s. Produces up to the first n chars at the nearest word boundary.