summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2013-01-25 17:02:35 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2013-01-25 17:02:35 (GMT)
commit20190e2d54e6d513bb197a160cdfd236bf63f168 (patch)
tree9a3df3739904b4f9adc0ac727dee0aef5e3554e1 /Misc
parent454ea92a4cbae62fcf7ef836a3792294ddbdf1f5 (diff)
parent1c90eed8a9a10b6b7eb5f791931cc86754d4028c (diff)
downloadcpython-20190e2d54e6d513bb197a160cdfd236bf63f168.zip
cpython-20190e2d54e6d513bb197a160cdfd236bf63f168.tar.gz
cpython-20190e2d54e6d513bb197a160cdfd236bf63f168.tar.bz2
Issue #1602133: 'environ' is not really available with shared libraries on OSX (merge from 3.3)
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 502fe06..2b61d03 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -218,6 +218,9 @@ Core and Builtins
Library
-------
+- Issue #1602133: on Mac OS X a shared library build (``--enable-shared``)
+ now fills the ``os.environ`` variable correctly.
+
- Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase
interface and support all mandatory methods and properties.