From: Victor Stinner Date: Mon, 12 Nov 2012 22:52:04 +0000 (+0100) Subject: Issue #16416: Fix Misc/NEWS entry, mention Mac OS X X-Git-Tag: v3.4.0a1~2021 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ff16750f5f3154bb1b188b2193012354438f2c4;p=thirdparty%2FPython%2Fcpython.git Issue #16416: Fix Misc/NEWS entry, mention Mac OS X --- diff --git a/Misc/NEWS b/Misc/NEWS index 35add804d0fa..5f0e4cf9939d 100644 --- 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.