Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/library/asyncio-exceptions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Exceptions
.. exception:: TimeoutError

A deprecated alias of :exc:`TimeoutError`,
raised when the operation has exceeded the given deadline.
raised when the asyncio operation has exceeded the given deadline.

.. versionchanged:: 3.11

Expand All @@ -23,7 +23,7 @@ Exceptions

.. exception:: CancelledError

The operation has been cancelled.
The asyncio operation has been cancelled.

This exception can be caught to perform custom operations
when asyncio Tasks are cancelled. In almost all situations the
Expand Down Expand Up @@ -52,7 +52,7 @@ Exceptions

.. exception:: IncompleteReadError

The requested read operation did not complete fully.
The requested asyncio read operation did not complete fully.

Raised by the :ref:`asyncio stream APIs<asyncio-streams>`.

Expand Down
Loading