mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.
Add dlopenflags to PyInterpreterState, and use it in dlopen calls.
This commit is contained in:
parent
984158d25b
commit
f0473d511b
6 changed files with 103 additions and 13 deletions
|
@ -23,6 +23,9 @@ typedef struct _is {
|
|||
PyObject *builtins;
|
||||
|
||||
int checkinterval;
|
||||
#ifdef HAVE_DLOPEN
|
||||
int dlopenflags;
|
||||
#endif
|
||||
|
||||
} PyInterpreterState;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue