Note that the #1548891 fix indirectly fixes shlex (#6988, #1170)

This commit is contained in:
Éric Araujo 2011-10-23 04:37:51 +02:00
parent 5a77fe92bd
commit b21f51a9d0
2 changed files with 3 additions and 4 deletions

View 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 writing minilanguages, (for example, in run control files for Python
applications) or for parsing quoted strings. applications) or for parsing quoted strings.
.. note:: Prior to Python 2.7.3, this module did not support Unicode input.
The :mod:`shlex` module currently does not support Unicode input.
The :mod:`shlex` module defines the following functions: The :mod:`shlex` module defines the following functions:

View File

@ -68,7 +68,8 @@ Library
- Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode - Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode
arguments with the system default encoding just like the write() method 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. - Issue #9168: now smtpd is able to bind privileged port.