From: Greg Ward Date: Fri, 7 Jun 2002 22:33:11 +0000 (+0000) Subject: Remove islower() -- not used anymore. X-Git-Tag: v2.3c1~5412 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f404c7ee84526f77578f6b6bec20a011a1f4cb57;p=thirdparty%2FPython%2Fcpython.git Remove islower() -- not used anymore. --- diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 30a1dc4e8050..3ffb2f4ebc72 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