]> granicus.if.org Git - python/commitdiff
Note that the #1548891 fix indirectly fixes shlex (#6988, #1170)
authorÉric Araujo <merwok@netwok.org>
Sun, 23 Oct 2011 02:37:51 +0000 (04:37 +0200)
committerÉric Araujo <merwok@netwok.org>
Sun, 23 Oct 2011 02:37:51 +0000 (04:37 +0200)
Doc/library/shlex.rst
Misc/NEWS

index f4622442e47fe208f48fa75037ed2f17ea68bbbb..bb05c7d46104fa29c1ed79af7e643e4ad29bbfcf 100644 (file)
@@ -21,9 +21,7 @@ syntaxes resembling that of the Unix shell.  This will often be useful for
 writing minilanguages, (for example, in run control files for Python
 applications) or for parsing quoted strings.
 
-.. note::
-
-   The :mod:`shlex` module currently does not support Unicode input.
+Prior to Python 2.7.3, this module did not support Unicode input.
 
 The :mod:`shlex` module defines the following functions:
 
index b4f9be241c6447dd6b91931bad47f0efe6fdc545..7b793b26908bbb1272200bfab1b25d4e694c6586 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -68,7 +68,8 @@ Library
 
 - Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode
   arguments with the system default encoding just like the write() method
-  does, instead of converting it to a raw buffer.
+  does, instead of converting it to a raw buffer.  This also fixes handling of
+  unicode input in the shlex module (#6988, #1170).
 
 - Issue #9168: now smtpd is able to bind privileged port.