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/os.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/os.rst')
-rw-r--r-- | Doc/library/os.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index e15a6f7..eb10db6 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -906,7 +906,7 @@ as internal buffering of data. The *dir_fd* argument. .. 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). @@ -1088,7 +1088,7 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window :meth:`~file.read` or :meth:`~file.readline` methods. .. 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). @@ -1208,7 +1208,7 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window :meth:`~file.write` method. .. 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). @@ -3375,7 +3375,7 @@ written in Python, such as a mail server's external command delivery program. functions called with :const:`P_NOWAIT` return suitable process handles. .. 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). |