[Python-checkins] r87559 - in python/branches/py3k: Doc/whatsnew/3.2.rst Misc/NEWS

victor.stinner python-checkins at python.org
Wed Dec 29 00:35:11 CET 2010


Author: victor.stinner
Date: Wed Dec 29 00:35:10 2010
New Revision: 87559

Log:
Issue #10783: rephrase the changelog (NEWS, What's new)

Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Wed Dec 29 00:35:10 2010
@@ -1706,6 +1706,6 @@
   (Contributed by Georg Brandl and Mattias Brändström;
   `appspot issue 53094 <http://codereview.appspot.com/53094>`_.)
 
-* :func:`struct.pack` doesn't encode implicitly unicode to UTF-8 anymore: use
+* :func:`struct.pack` no longer encodes implicitly unicode to UTF-8: use
   explicit conversion instead and replace unicode literals by bytes literals.
 

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Wed Dec 29 00:35:10 2010
@@ -29,8 +29,7 @@
   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() doesn't encode implicitly unicode to UTF-8
-  anymore.
+- Issue #10783: struct.pack() no longer encodes implicitly unicode to UTF-8.
 
 - Issue #10730: Add SVG mime types to mimetypes module.
 


More information about the Python-checkins mailing list