diff options
author | Greg Ward <gward@python.net> | 2002-10-22 18:31:50 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2002-10-22 18:31:50 (GMT) |
commit | 4c486bc0c0022b0d985582d3f24b719fed4a0911 (patch) | |
tree | bdf7cff0906d639b81f384d412f3cea9a902f8c4 /Lib/textwrap.py | |
parent | 019bd4a6c1d81e7556b728dd0d2dd68dbddacb67 (diff) | |
download | cpython-4c486bc0c0022b0d985582d3f24b719fed4a0911.zip cpython-4c486bc0c0022b0d985582d3f24b719fed4a0911.tar.gz cpython-4c486bc0c0022b0d985582d3f24b719fed4a0911.tar.bz2 |
Add comment about inability to handle Unicode strings (hopefully a
temporary condition).
Diffstat (limited to 'Lib/textwrap.py')
-rw-r--r-- | Lib/textwrap.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 1ea815a..2c9592b 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -5,6 +5,9 @@ # Copyright (C) 2002 Python Software Foundation. # 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$" import string, re |