diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-09 15:07:40 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-09 15:07:40 (GMT) |
commit | 8220174489e3f28b874b3b45516585c30e5999da (patch) | |
tree | a5b669f41c261aedf8ef1ace07418c825956c40b /Lib | |
parent | a50794b62016e573b9f2a9e4a2a376c7360eae56 (diff) | |
download | cpython-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 'Lib')
-rwxr-xr-x | Lib/test/regrtest.py | 1 | ||||
-rwxr-xr-x | Lib/test/test_dl.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 1109086..224a2a0 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -945,7 +945,6 @@ _expectations = { test_cd test_cl test_curses - test_dl test_gdbm test_gl test_imgfile diff --git a/Lib/test/test_dl.py b/Lib/test/test_dl.py index d1f73b2..b70a4cf 100755 --- a/Lib/test/test_dl.py +++ b/Lib/test/test_dl.py @@ -10,6 +10,7 @@ sharedlibs = [ ('/usr/lib/libc.so', 'getpid'), ('/lib/libc.so.6', 'getpid'), ('/usr/bin/cygwin1.dll', 'getpid'), + ('/usr/lib/libc.dylib', 'getpid'), ] for s, func in sharedlibs: |