[Python-checkins] python/dist/src/Lib textwrap.py,1.17,1.18

gward@users.sourceforge.net gward@users.sourceforge.net
Tue, 22 Oct 2002 11:31:52 -0700


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

Modified Files:
	textwrap.py 
Log Message:
Add comment about inability to handle Unicode strings (hopefully a
temporary condition).


Index: textwrap.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/textwrap.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** textwrap.py	13 Oct 2002 19:23:18 -0000	1.17
--- textwrap.py	22 Oct 2002 18:31:50 -0000	1.18
***************
*** 6,9 ****
--- 6,12 ----
  # Written by Greg Ward <gward@python.net>
  
+ # XXX currently this module does not work very well with Unicode
+ # strings.  See http://www.python.org/sf/622831 for updates.
+ 
  __revision__ = "$Id$"