From: Victor Stinner Date: Tue, 31 Mar 2015 10:19:15 +0000 (+0200) Subject: What's New in Python 3.5, PEP 475: mention modified signal functions X-Git-Tag: v3.5.0a4~241 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb011cb8dfbbcee5ee3977e59a38ab5c7114c1a5;p=thirdparty%2FPython%2Fcpython.git What's New in Python 3.5, PEP 475: mention modified signal functions --- diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 0156415ad93e..553920d88581 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -428,8 +428,8 @@ The :mod:`signal` module defines the following functions: .. versionadded:: 3.3 .. versionchanged:: 3.5 - The function is now retried with the recomputed timeout if interrupted by - a signal not in *sigset* and the signal handler does not raise an + The function is now retried with the recomputed *timeout* if interrupted + by a signal not in *sigset* and the signal handler does not raise an exception (see :pep:`475` for the rationale). diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index ad6475a9edf0..fe981e60d333 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -630,6 +630,7 @@ Changes in the Python API - :func:`os.read`, :func:`os.write` - :func:`select.select`, :func:`select.poll.poll`, :func:`select.epoll.poll`, :func:`select.kqueue.control`, :func:`select.devpoll.poll` + - :func:`signal.sigtimedwait`, :func:`signal.sigwaitinfo` - :func:`time.sleep` * Before Python 3.5, a :class:`datetime.time` object was considered to be false