diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-31 09:48:34 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-31 09:48:34 (GMT) |
commit | 4448c08451e947ccf197742d22fa49adba71e363 (patch) | |
tree | f1183e1f289ad178ec22e274644b86a6c3a0cf55 /Doc/library/select.rst | |
parent | b6faf0dfa7e5d9f5b9f09bc1d1113069f1c962ab (diff) | |
download | cpython-4448c08451e947ccf197742d22fa49adba71e363.zip cpython-4448c08451e947ccf197742d22fa49adba71e363.tar.gz cpython-4448c08451e947ccf197742d22fa49adba71e363.tar.bz2 |
Issue #23485: select.kqueue.control() is now retried when interrupted by a signal
Diffstat (limited to 'Doc/library/select.rst')
-rw-r--r-- | Doc/library/select.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst index 61f3835..e6f95fd 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -454,6 +454,12 @@ Kqueue Objects - max_events must be 0 or a positive integer - timeout in seconds (floats possible) + .. versionchanged:: 3.5 + The function is now retried with a recomputed timeout when interrupted by + a signal, except if the signal handler raises an exception (see + :pep:`475` for the rationale), instead of raising + :exc:`InterruptedError`. + .. _kevent-objects: |