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

exception ZeroDivisionError Raised when the second argument of a division or modulo operation is zero. The associated value

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

exception StopAsyncIteration Must be raised by __anext__() method of an asynchronous

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

exception PendingDeprecationWarning Base class for warnings about features which will be deprecated in the future.

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

exception KeyError Raised when a mapping (dictionary) key is not found in the set of existing keys.

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

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

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

reason A string describing the specific codec error.

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

exception GeneratorExit Raised when a generator or coroutine

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

exception UnicodeWarning Base class for warnings related to Unicode.

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

exception FileExistsError Raised when trying to create a file or directory which already exists. Corresponds to errno

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

errno A numeric error code from the C variable errno.

2025-01-10 15:47:30