[Python-checkins] python/dist/src/Lib textwrap.py,1.4,1.5

gward@users.sourceforge.net gward@users.sourceforge.net
Fri, 07 Jun 2002 15:33:13 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv18638

Modified Files:
	textwrap.py 
Log Message:
Remove islower() -- not used anymore.


Index: textwrap.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/textwrap.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** textwrap.py	7 Jun 2002 22:32:15 -0000	1.4
--- textwrap.py	7 Jun 2002 22:33:11 -0000	1.5
***************
*** 7,16 ****
  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:
      """
--- 7,10 ----