StopAsyncIterationStopAsyncIteration
Raised by an async iterator's __anext__() method to signal that iteration is complete.
BlockingIOErrorAn I/O operation would block on a non-blocking object.
A non-blocking socket or file descriptor tried to perform an operation that would block. This is expected in non-blocking I/O programming and indicates the operation cannot complete immediately.
Use select(), poll(), or asyncio to wait for the I/O object to be ready. In async code, await the operation. Check the error's characters_written attribute for partial writes. Use a framework that handles non-blocking I/O.
StopAsyncIterationRaised by an async iterator's __anext__() method to signal that iteration is complete.
ValueErrorA function received an argument of the right type but an inappropriate value.
IndentationErrorThe code has incorrect indentation, which is syntactically significant in Python.
BufferErrorAn operation on a buffer object failed.
SyntaxErrorPython encountered invalid syntax that cannot be parsed.
TimeoutErrorA system-level timeout occurred during a blocking operation.