Home
last modified time | relevance | path

Searched refs:PyDLL (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/ctypes/
D__init__.py397 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/
Dctypes.rst1372 .. 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/
Dcpython_mingw_v3.10.2.patch626 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])