summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/exceptions.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-13 14:17:24 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-13 14:17:24 (GMT)
commit82f34ada45f96c13eb68927d6beccdcbab2c77b3 (patch)
tree136839c19a7d640d61b84b04129a76e0063b87ba /Doc/c-api/exceptions.rst
parent38dc250521d2c34f58537b25301a0ac9a4bb6c85 (diff)
downloadcpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.zip
cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.gz
cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.bz2
fix instances of consecutive articles (closes #23221)
Patch by Karan Goel.
Diffstat (limited to 'Doc/c-api/exceptions.rst')
-rw-r--r--Doc/c-api/exceptions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst
index 8ad742a..66b7752 100644
--- a/Doc/c-api/exceptions.rst
+++ b/Doc/c-api/exceptions.rst
@@ -64,7 +64,7 @@ in various ways. There is a separate error indicator for each thread.
Do not compare the return value to a specific exception; use
:c:func:`PyErr_ExceptionMatches` instead, shown below. (The comparison could
easily fail since the exception may be an instance instead of a class, in the
- case of a class exception, or it may the a subclass of the expected exception.)
+ case of a class exception, or it may be a subclass of the expected exception.)
.. c:function:: int PyErr_ExceptionMatches(PyObject *exc)