summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-02 04:20:33 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-02 04:20:33 (GMT)
commitd2ad5718ad955a13cf570bacad1d7800d995da33 (patch)
tree8701db861a6620fbb4cd000fd1932e5a0f8f6ffe /Doc/whatsnew
parent2eb819f7a82c7eb61f2d253894d9973f0ec21df2 (diff)
downloadcpython-d2ad5718ad955a13cf570bacad1d7800d995da33.zip
cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.tar.gz
cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.tar.bz2
Issue #25523: Further a-to-an corrections new in 3.5
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.5.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index c73d50b..29d76b1 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -465,7 +465,7 @@ not make an additional system call::
PEP 475: Retry system calls failing with EINTR
----------------------------------------------
-A :py:data:`errno.EINTR` error code is returned whenever a system call, that
+An :py:data:`errno.EINTR` error code is returned whenever a system call, that
is waiting for I/O, is interrupted by a signal. Previously, Python would
raise :exc:`InterruptedError` in such case. This meant that, when writing a
Python application, the developer had two choices: