summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2013-01-25 16:57:13 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2013-01-25 16:57:13 (GMT)
commit697e56d0f592165209cbeb87583c75dc231c6338 (patch)
treefa101edf4496542ea809c2ebc5ef504d6fe296e5 /Misc
parent7981f202931ebef466464e172625a75161bb5fa0 (diff)
downloadcpython-697e56d0f592165209cbeb87583c75dc231c6338.zip
cpython-697e56d0f592165209cbeb87583c75dc231c6338.tar.gz
cpython-697e56d0f592165209cbeb87583c75dc231c6338.tar.bz2
Issue #1602133: 'environ' is not really available with shared libraries on OSX
There already was a workaround for this for framework builds on OSX, this changeset enables the same workaround for shared libraries. Closes #1602133
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index da71cd6..e19c069 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -197,6 +197,9 @@ Core and Builtins
- Issue #13521: dict.setdefault() now does only one lookup for the given key,
making it "atomic" for many purposes. Patch by Filip GruszczyƄski.
+- Issue #1602133: on Mac OS X a shared library build (``--enable-shared``)
+ now fills the ``os.environ`` variable correctly.
+
- Issue #14471: Fix a possible buffer overrun in the winreg module.
Library