OverflowError
  • References/Python/Python/Built-in Exceptions

exception OverflowError Raised when the result of an arithmetic operation is too large to be represented. This cannot occur

2025-01-10 15:47:30
OSError.winerror
  • References/Python/Python/Built-in Exceptions

winerror Under Windows, this gives you the native Windows error code. The errno attribute is then an approximate

2025-01-10 15:47:30
ValueError
  • References/Python/Python/Built-in Exceptions

exception ValueError Raised when a built-in operation or function receives an argument that has the right type but an inappropriate

2025-01-10 15:47:30
UnicodeError
  • References/Python/Python/Built-in Exceptions

exception UnicodeError Raised when a Unicode-related encoding or decoding error occurs. It is a subclass of ValueError

2025-01-10 15:47:30
UnicodeEncodeError
  • References/Python/Python/Built-in Exceptions

exception UnicodeEncodeError Raised when a Unicode-related error occurs during encoding. It is a subclass of UnicodeError

2025-01-10 15:47:30
IndexError
  • References/Python/Python/Built-in Exceptions

exception IndexError Raised when a sequence subscript is out of range. (Slice indices are silently truncated to fall in the

2025-01-10 15:47:30
BaseException.with_traceback()
  • References/Python/Python/Built-in Exceptions

with_traceback(tb) This method sets tb as the new traceback for the exception and returns the exception object. It

2025-01-10 15:47:30
WindowsError
  • References/Python/Python/Built-in Exceptions

exception WindowsError Only available on Windows.

2025-01-10 15:47:30
SyntaxWarning
  • References/Python/Python/Built-in Exceptions

exception SyntaxWarning Base class for warnings about dubious syntax.

2025-01-10 15:47:30
IOError
  • References/Python/Python/Built-in Exceptions

exception IOError

2025-01-10 15:47:30