]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove islower() -- not used anymore.
authorGreg Ward <gward@python.net>
Fri, 7 Jun 2002 22:33:11 +0000 (22:33 +0000)
committerGreg Ward <gward@python.net>
Fri, 7 Jun 2002 22:33:11 +0000 (22:33 +0000)
Lib/textwrap.py

index 30a1dc4e805072c9582bbb8250b6eae0c0dd1da4..3ffb2f4ebc72148667b738c8800a1053d813e66c 100644 (file)
@@ -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