Home
last modified time | relevance | path

Searched refs:WinError (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/ctypes/test/
Dtest_win32.py79 e = WinError(ERROR_INVALID_PARAMETER)
86 raise WinError()
Dtest_funcptr.py94 raise WinError()
/third_party/python/Lib/ctypes/
D__init__.py474 def WinError(code=None, descr=None): function
/third_party/python/Lib/test/support/
D__init__.py223 raise ctypes.WinError()
232 raise ctypes.WinError()
/third_party/python/Doc/library/
Dctypes.rst491 ... raise WinError()
505 ``WinError`` is a function which will call Windows ``FormatMessage()`` api to
507 ``WinError`` takes an optional error code parameter, if no one is used, it calls
1331 :exc:`OSError` error is raised with the message *"[WinError 126] The
1781 >>> from ctypes import POINTER, WINFUNCTYPE, windll, WinError
1800 ... raise WinError()
1814 ... raise WinError()
2030 .. function:: WinError(code=None, descr=None)
/third_party/python/Misc/
DHISTORY5774 - Issue #16169: Fix ctypes.WinError()'s confusion between errno and winerror.