[Python-checkins] cpython: What's New in Python 3.5, PEP 475: mention modified signal functions

victor.stinner python-checkins at python.org
Tue Mar 31 14:07:53 CEST 2015


https://hg.python.org/cpython/rev/5f1b7ab3517b
changeset:   95321:5f1b7ab3517b
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Mar 31 12:19:15 2015 +0200
summary:
  What's New in Python 3.5, PEP 475: mention modified signal functions

files:
  Doc/library/signal.rst |  4 ++--
  Doc/whatsnew/3.5.rst   |  1 +
  2 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
--- a/Doc/library/signal.rst
+++ b/Doc/library/signal.rst
@@ -428,8 +428,8 @@
    .. 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
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -630,6 +630,7 @@
   - :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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list