Back to module index
Go to module by name
asyncio
asyncio.exceptions
asyncio exceptions.
Classes
CancelledError
The Future or Task was cancelled.
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
IncompleteReadError
Incomplete read error. Attributes:
- partial: read bytes string before the end of stream was reached
- expected: total number of expected bytes (or None if unknown)
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
InvalidStateError
The operation is not allowed in this state.
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
LimitOverrunError
Reached the buffer limit while looking for a separator.
Attributes:
- consumed: total number of to be consumed bytes.
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
SendfileNotAvailableError
Sendfile syscall is not available.
Raised if OS does not support sendfile syscall for given socket or
file type.
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
TimeoutError
The operation exceeded the given deadline.
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>