diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-11-12 22:52:04 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-11-12 22:52:04 (GMT) |
commit | 5ff16750f5f3154bb1b188b2193012354438f2c4 (patch) | |
tree | c14a1954dd31990dc3fda61006c28b3c142fe063 /Misc | |
parent | 0d92c4f667518c7a24abda885e10c0c8e72cae57 (diff) | |
download | cpython-5ff16750f5f3154bb1b188b2193012354438f2c4.zip cpython-5ff16750f5f3154bb1b188b2193012354438f2c4.tar.gz cpython-5ff16750f5f3154bb1b188b2193012354438f2c4.tar.bz2 |
Issue #16416: Fix Misc/NEWS entry, mention Mac OS X
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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. |