summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-02 09:49:42 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-04-02 09:49:42 (GMT)
commit708d9ba5a228de83267e9ecc57f4fde90c326b84 (patch)
treee74b69c7871a4be55f151322e2de01cfbaf62c04 /Doc/library/functions.rst
parent35bee932e4279a954b9218c3f85cb6be439887dc (diff)
downloadcpython-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.rst2
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).