What's New in Python 3.5, PEP 475: mention modified signal functions

This commit is contained in:
Victor Stinner 2015-03-31 12:19:15 +02:00
parent 58e4134a1c
commit eb011cb8df
2 changed files with 3 additions and 2 deletions

View File

@ -428,8 +428,8 @@ The :mod:`signal` module defines the following functions:
.. versionadded:: 3.3 .. versionadded:: 3.3
.. versionchanged:: 3.5 .. versionchanged:: 3.5
The function is now retried with the recomputed timeout if interrupted by The function is now retried with the recomputed *timeout* if interrupted
a signal not in *sigset* and the signal handler does not raise an by a signal not in *sigset* and the signal handler does not raise an
exception (see :pep:`475` for the rationale). exception (see :pep:`475` for the rationale).

View File

@ -630,6 +630,7 @@ Changes in the Python API
- :func:`os.read`, :func:`os.write` - :func:`os.read`, :func:`os.write`
- :func:`select.select`, :func:`select.poll.poll`, :func:`select.epoll.poll`, - :func:`select.select`, :func:`select.poll.poll`, :func:`select.epoll.poll`,
:func:`select.kqueue.control`, :func:`select.devpoll.poll` :func:`select.kqueue.control`, :func:`select.devpoll.poll`
- :func:`signal.sigtimedwait`, :func:`signal.sigwaitinfo`
- :func:`time.sleep` - :func:`time.sleep`
* Before Python 3.5, a :class:`datetime.time` object was considered to be false * Before Python 3.5, a :class:`datetime.time` object was considered to be false