diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-23 17:02:31 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-23 17:02:31 (GMT) |
commit | 75d8c5cea26912dd58f27689fbe9f7679e45aeb8 (patch) | |
tree | f314600d10b55375f26f58f145355458e4cc45b0 /Misc/NEWS | |
parent | acd0fda1a46fa7d356c1e5de508dd33ce21e7a8f (diff) | |
download | cpython-75d8c5cea26912dd58f27689fbe9f7679e45aeb8.zip cpython-75d8c5cea26912dd58f27689fbe9f7679e45aeb8.tar.gz cpython-75d8c5cea26912dd58f27689fbe9f7679e45aeb8.tar.bz2 |
Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape error
handler to parse the Makefile file. Avoid a UnicodeDecodeError if the source
code directory name contains a non-ASCII character and the locale encoding is
ASCII.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -10,6 +10,11 @@ What's New in Python 3.2 Beta 1? Core and Builtins ----------------- +- Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape error + handler to parse the Makefile file. Avoid a UnicodeDecodeError if the source + code directory name contains a non-ASCII character and the locale encoding is + ASCII. + - Issue #10089: Add support for arbitrary -X options on the command-line. They can be retrieved through a new attribute ``sys._xoptions``. |