Searched refs:use_errno (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
D | test_errno.py | 12 libc = CDLL(libc_name, use_errno=True) 29 libc = CDLL(libc_name, use_errno=False)
|
/third_party/python/Lib/ctypes/ |
D | __init__.py | 341 use_errno=False, argument 346 if use_errno:
|
/third_party/python/Doc/library/ |
D | ctypes.rst | 1323 .. class:: CDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winmod… 1345 .. class:: OleDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winm… 1358 .. class:: WinDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winm… 1393 The *use_errno* parameter, when set to true, enables a ctypes mechanism that 1396 variable; if you call foreign functions created with ``use_errno=True`` then the 1655 .. function:: CFUNCTYPE(restype, *argtypes, use_errno=False, use_last_error=False) 1659 *use_errno* is set to true, the ctypes private copy of the system 1665 .. function:: WINFUNCTYPE(restype, *argtypes, use_errno=False, use_last_error=False) 1670 release the GIL during the call. *use_errno* and *use_last_error* have the
|
/third_party/python/Doc/whatsnew/ |
D | 2.6.rst | 2871 ``use_errno=True`` as a keyword parameter to the :func:`DLL` function
|