summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-26 22:50:57 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-03-26 22:50:57 (GMT)
commita766ddfa2fa0934a3852d74b0630a7bd3c91958e (patch)
treed6a3e28d1d0dae89f39029ee93a78a8abc91ba63 /Doc/library/functions.rst
parent1912b39deffe416f6b0c16df64b634a3e55fd424 (diff)
downloadcpython-a766ddfa2fa0934a3852d74b0630a7bd3c91958e.zip
cpython-a766ddfa2fa0934a3852d74b0630a7bd3c91958e.tar.gz
cpython-a766ddfa2fa0934a3852d74b0630a7bd3c91958e.tar.bz2
Issue #23648: Document the PEP 475 in the "Porting to Python 3.5" section and
add a version changed note in modified functions.
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r--Doc/library/functions.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 91c53de..546e6ee 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -1065,6 +1065,11 @@ are always available. They are listed here in alphabetical order.
The ``'U'`` mode.
+ .. versionchanged:: 3.5
+ If the system call is interrupted and the signal 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).
+
.. function:: ord(c)