mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
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)
This commit is contained in:
parent
a50794b620
commit
8220174489
7 changed files with 17 additions and 8 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue