From: Victor Stinner Date: Wed, 29 Dec 2010 02:44:42 +0000 (+0000) Subject: Issue #10783: rephrase the changelog (new try) X-Git-Tag: v3.2rc1~287 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de3aa7fc622800dc730f2844399f7cd567397ea5;p=thirdparty%2FPython%2Fcpython.git Issue #10783: rephrase the changelog (new try) --- diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index e0c48a9fd8df..51ebcd234b73 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1706,6 +1706,6 @@ require changes to your code: (Contributed by Georg Brandl and Mattias Brändström; `appspot issue 53094 `_.) -* :func:`struct.pack` no longer encodes implicitly unicode to UTF-8: use +* :func:`struct.pack` no longer implicitly encodes unicode to UTF-8: use explicit conversion instead and replace unicode literals by bytes literals. diff --git a/Misc/NEWS b/Misc/NEWS index 8fb881ec6b70..530fcc79e27e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -29,7 +29,7 @@ Library The function now raises OSError on Windows >=6.0 when the user is unable to create symbolic links. XP and 2003 still raise NotImplementedError. -- Issue #10783: struct.pack() no longer encodes implicitly unicode to UTF-8. +- Issue #10783: struct.pack() no longer implicitly encodes unicode to UTF-8. - Issue #10730: Add SVG mime types to mimetypes module.