class _ErrorFormatter: (source)
Class Method | fromEnvironment |
Get as many of the platform-specific error translation objects as possible and return an instance of cls created with them. |
Method | __init__ |
Undocumented |
Method | formatError |
Returns the string associated with a Windows error message, such as the ones found in socket.error. |
Instance Variable | errorTab |
A mapping from integer error numbers to str messages which correspond to those erorrs (like socket.errorTab). |
Instance Variable | formatMessage |
A callable which takes one integer error number argument and returns a str giving the message for that error (like win32api.FormatMessage). |
Instance Variable | winError |
A callable which takes one integer error number argument and returns a WindowsError instance for that error (like ctypes.WinError ). |
Returns the string associated with a Windows error message, such as the ones found in socket.error.
Attempts direct lookup against the win32 API via ctypes and then pywin32 if available), then in the error table in the socket module, then finally defaulting to os.strerror.
Parameters | |
errorcode:int | the Windows error code |
Returns | |
str | The error message string |
WindowsError
instance for that error (like ctypes.WinError
).