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

exception ConnectionAbortedError A subclass of ConnectionError, raised when a connection attempt is aborted by

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

exception BytesWarning Base class for warnings related to

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
IsADirectoryError
  • References/Python/Python/Built-in Exceptions

exception IsADirectoryError Raised when a file operation (such as

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
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
MemoryError
  • References/Python/Python/Built-in Exceptions

exception MemoryError Raised when an operation runs out of memory but the situation may still be rescued (by deleting some objects)

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

end The index after the last invalid data in

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
BaseException.args
  • References/Python/Python/Built-in Exceptions

args The tuple of arguments given to the exception constructor. Some built-in exceptions (like OSError) expect

2025-01-10 15:47:30