Home
last modified time | relevance | path

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

/third_party/python/Lib/ctypes/
D__init__.py399 class PyDLL(CDLL): class
459 pydll = LibraryLoader(PyDLL)
462 pythonapi = PyDLL("python dll", None, _sys.dllhandle)
464 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2])
466 pythonapi = PyDLL(None)
/third_party/python/Lib/ctypes/test/
Dtest_parameters.py251 from ctypes import PyDLL, c_int, c_void_p, py_object, Structure
265 PyList_Append = PyDLL(_ctypes_test.__file__)._testfunc_pylist_append
288 PyList_Append = PyDLL(_ctypes_test.__file__)._testfunc_pylist_append
/third_party/python/Doc/library/
Dctypes.rst1389 .. class:: PyDLL(name, mode=DEFAULT_MODE, handle=None)
1475 .. attribute:: PyDLL._handle
1480 .. attribute:: PyDLL._name
1493 :class:`CDLL`, :class:`PyDLL`, :class:`WinDLL`, or :class:`OleDLL` types.
1528 Creates :class:`PyDLL` instances.
1537 An instance of :class:`PyDLL` that exposes Python C API functions as
/third_party/python/patches/
Dcpython_mingw_v3.11.4.patch751 pydll = LibraryLoader(PyDLL)
755 + pythonapi = PyDLL("libpython%d.%d%s.dll" % (_sys.version_info[:2] + (_sys.abiflags,)), None)
757 pythonapi = PyDLL("python dll", None, _sys.dllhandle)
759 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2])