summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-04-09 15:07:40 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2006-04-09 15:07:40 (GMT)
commit8220174489e3f28b874b3b45516585c30e5999da (patch)
treea5b669f41c261aedf8ef1ace07418c825956c40b /Misc/NEWS
parenta50794b62016e573b9f2a9e4a2a376c7360eae56 (diff)
downloadcpython-8220174489e3f28b874b3b45516585c30e5999da.zip
cpython-8220174489e3f28b874b3b45516585c30e5999da.tar.gz
cpython-8220174489e3f28b874b3b45516585c30e5999da.tar.bz2
Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c)
to load extension modules and now provides the dl module. As a result, sys.setdlopenflags() now works correctly on these systems. (SF patch #1454844)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b7f46ba..0a26e91 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@ What's New in Python 2.5 alpha 2?
Core and builtins
-----------------
+- Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c)
+ to load extension modules and now provides the dl module. As a result,
+ sys.setdlopenflags() now works correctly on these systems. (SF patch
+ #1454844)
+
+
Extension Modules
-----------------