diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 09:49:42 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 09:49:42 (GMT) |
commit | 708d9ba5a228de83267e9ecc57f4fde90c326b84 (patch) | |
tree | e74b69c7871a4be55f151322e2de01cfbaf62c04 /Doc/library/functions.rst | |
parent | 35bee932e4279a954b9218c3f85cb6be439887dc (diff) | |
download | cpython-708d9ba5a228de83267e9ecc57f4fde90c326b84.zip cpython-708d9ba5a228de83267e9ecc57f4fde90c326b84.tar.gz cpython-708d9ba5a228de83267e9ecc57f4fde90c326b84.tar.bz2 |
Issue #23618: Document EINTR changes in socket documentation
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 546e6ee..456dd09 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1066,7 +1066,7 @@ are always available. They are listed here in alphabetical order. The ``'U'`` mode. .. versionchanged:: 3.5 - If the system call is interrupted and the signal does not raise an + If the system call is interrupted and the signal handler does not raise an exception, the function now retries the system call instead of raising an :exc:`InterruptedError` exception (see :pep:`475` for the rationale). |