]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #16416: Fix Misc/NEWS entry, mention Mac OS X
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 12 Nov 2012 22:52:04 +0000 (23:52 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 12 Nov 2012 22:52:04 +0000 (23:52 +0100)
Misc/NEWS

index 35add804d0fafab4261a699249dd55f5acc73d26..5f0e4cf9939d2f8cdfcacdc0f088fa280a142aaf 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,11 +10,11 @@ What's New in Python 3.4.0 Alpha 1?
 Core and Builtins
 -----------------
 
-- Issue #16416: OS data are now always encoded/decoded to/from
-  UTF-8/surrogateescape, instead of the locale encoding (which may be ASCII if
-  no locale environment variable is set), to avoid inconsistencies with
-  os.fsencode() and os.fsdecode() functions which are already using
-  UTF-8/surrogateescape.
+- Issue #16416: On Mac OS X, operating system data are now always
+  encoded/decoded to/from UTF-8/surrogateescape, instead of the locale encoding
+  (which may be ASCII if no locale environment variable is set), to avoid
+  inconsistencies with os.fsencode() and os.fsdecode() functions which are
+  already using UTF-8/surrogateescape.
 
 - Issue #16453: Fix equality testing of dead weakref objects.