Python _ctypes.RTLD_LOCAL Examples
The following are 2
code examples of _ctypes.RTLD_LOCAL().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
_ctypes
, or try the search function
.
Example #1
Source File: __init__.py From PyDev.Debugger with Eclipse Public License 1.0 | 5 votes |
def __init__(self, name, mode=RTLD_LOCAL, handle=None): self._name = name if handle is None: self._handle = _dlopen(self._name, mode) else: self._handle = handle
Example #2
Source File: __init__.py From filmkodi with Apache License 2.0 | 5 votes |
def __init__(self, name, mode=RTLD_LOCAL, handle=None): self._name = name if handle is None: self._handle = _dlopen(self._name, mode) else: self._handle = handle