summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2002-06-07 22:33:11 (GMT)
committerGreg Ward <gward@python.net>2002-06-07 22:33:11 (GMT)
commitf404c7ee84526f77578f6b6bec20a011a1f4cb57 (patch)
tree23efaf19efceea3e990710a5849ddbc0481480dd
parentcb320eb93826b52d6774e025a43463ef07e67d5c (diff)
downloadcpython-f404c7ee84526f77578f6b6bec20a011a1f4cb57.zip
cpython-f404c7ee84526f77578f6b6bec20a011a1f4cb57.tar.gz
cpython-f404c7ee84526f77578f6b6bec20a011a1f4cb57.tar.bz2
Remove islower() -- not used anymore.
-rw-r--r--Lib/textwrap.py6
1 files changed, 0 insertions, 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