summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-06-29 03:01:52 (GMT)
committerNed Deily <nad@acm.org>2011-06-29 03:01:52 (GMT)
commit8c86d308a155e86f2ef630777cd5ac08c926f139 (patch)
tree36b0d34bb6217437b195e9b9ffe88c4e7383fe30 /Misc/NEWS
parent274271d1ae71dbd1177b54a5def45fed3ecb501f (diff)
parent657b2de893a206dbcc3d34baa65f6cfda11726e5 (diff)
downloadcpython-8c86d308a155e86f2ef630777cd5ac08c926f139.zip
cpython-8c86d308a155e86f2ef630777cd5ac08c926f139.tar.gz
cpython-8c86d308a155e86f2ef630777cd5ac08c926f139.tar.bz2
Issue #9516: Merge Distutils changes from 3.2
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS11
1 files changed, 11 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ae17169..de3026b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -200,6 +200,17 @@ Core and Builtins
Library
-------
+- Issue #9516: On Mac OS X, change Distutils to no longer globally attempt to
+ check or set the MACOSX_DEPLOYMENT_TARGET environment variable for the
+ interpreter process. This could cause failures in non-Distutils subprocesses
+ and was unreliable since tests or user programs could modify the interpreter
+ environment after Distutils set it. Instead, have Distutils set the the
+ deployment target only in the environment of each build subprocess. It is
+ still possible to globally override the default by setting
+ MACOSX_DEPLOYMENT_TARGET before launching the interpreter; its value must be
+ greater or equal to the default value, the value with which the interpreter
+ was built.
+
- Issue #12422: In the copy module, don't store objects that are their own copy
in the memo dict.