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

exception NameError Raised when a local or global name is not found. This applies only to unqualified names. The associated

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

exception ArithmeticError The base class for those built-in exceptions that are raised for various arithmetic errors:

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

exception ProcessLookupError Raised when a given process doesn’t exist. Corresponds to errno ESRCH

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

exception OSError([arg]) exception OSError(errno, strerror[, filename[, winerror[, filename2]]]) This exception

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

exception IsADirectoryError Raised when a file operation (such as

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

exception BrokenPipeError A subclass of ConnectionError, raised when trying to write on a pipe while the other

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

exception ConnectionError A base class for connection-related issues. Subclasses are

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

exception ImportWarning Base class for warnings about probable mistakes in module imports.

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

characters_written An integer containing the number of characters written to the stream before it blocked. This attribute is

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

exception BlockingIOError Raised when an operation would block on an object (e.g. socket) set for non-blocking operation. Corresponds

2025-01-10 15:47:30