From f404c7ee84526f77578f6b6bec20a011a1f4cb57 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Fri, 7 Jun 2002 22:33:11 +0000 Subject: Remove islower() -- not used anymore. --- Lib/textwrap.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 30a1dc4..3ffb2f4 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -6,12 +6,6 @@ __revision__ = "$Id$" import string, re - -# XXX is this going to be implemented properly somewhere in 2.3? -def islower(c): - return c in string.lowercase - - class TextWrapper: """ Object for wrapping/filling text. The public interface consists of -- cgit v0.12