summaryrefslogtreecommitdiffstats
path: root/Lib/textwrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/textwrap.py')
-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