Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.

Add dlopenflags to PyInterpreterState, and use it in dlopen calls.
This commit is contained in:
Martin v. Löwis 2001-07-18 16:17:16 +00:00
parent 984158d25b
commit f0473d511b
6 changed files with 103 additions and 13 deletions

View file

@ -23,6 +23,9 @@ typedef struct _is {
PyObject *builtins;
int checkinterval;
#ifdef HAVE_DLOPEN
int dlopenflags;
#endif
} PyInterpreterState;