Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update Doc/library/exceptions.rst
  • Loading branch information
ZackerySpytz committed May 20, 2020
commit 9e7db67ffa4ff882daa5062ba01c9d0cea76d8e1
5 changes: 4 additions & 1 deletion Doc/library/exceptions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,10 @@ depending on the system error code.
.. exception:: TimeoutError

Raised when a system function timed out at the system level.
Corresponds to :c:data:`errno` ``ETIMEDOUT``.
Corresponds to :c:data:`errno` ``ETIMEDOUT`` and ``ETIME``.

.. versionchanged:: 3.10
``ETIME`` is now mapped to :exc:`TimeoutError`.

.. versionadded:: 3.3
All the above :exc:`OSError` subclasses were added.
Expand Down