UnicodeTranslateErrorUnicodeTranslateError
A Unicode translation operation failed for a specific character.
InterruptedErrorA system call was interrupted by an incoming signal.
A blocking system call (read, write, select) was interrupted by a signal handler. In Python 3.5+, most system calls are automatically retried after interruption, making this error less common.
In Python 3.5+, this is usually handled automatically by the interpreter. If encountered, retry the interrupted operation. Use signal-safe patterns in signal handlers. Avoid long-running operations in signal handlers.
UnicodeTranslateErrorA Unicode translation operation failed for a specific character.
AssertionErrorAn assert statement failed because the condition evaluated to False.
OSErrorA system-level error occurred during an I/O operation.
AttributeErrorAn object does not have the requested attribute or method.
UnboundLocalErrorA local variable was referenced before it was assigned a value.
ChildProcessErrorA child process operation failed.