Searched refs:PyDLL (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/ctypes/ |
D | __init__.py | 397 class PyDLL(CDLL): class 457 pydll = LibraryLoader(PyDLL) 460 pythonapi = PyDLL("python dll", None, _sys.dllhandle) 462 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2]) 464 pythonapi = PyDLL(None)
|
/third_party/python/Doc/library/ |
D | ctypes.rst | 1372 .. class:: PyDLL(name, mode=DEFAULT_MODE, handle=None) 1458 .. attribute:: PyDLL._handle 1463 .. attribute:: PyDLL._name 1476 :class:`CDLL`, :class:`PyDLL`, :class:`WinDLL`, or :class:`OleDLL` types. 1511 Creates :class:`PyDLL` instances. 1520 An instance of :class:`PyDLL` that exposes Python C API functions as
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 626 pydll = LibraryLoader(PyDLL) 630 + pythonapi = PyDLL("libpython%d.%d%s.dll" % (_sys.version_info[:2] + (_sys.abiflags,)), None) 632 pythonapi = PyDLL("python dll", None, _sys.dllhandle) 634 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2])
|