diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-13 14:20:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-13 14:20:31 (GMT) |
commit | 610bc6a211be33b390a9910943f1f9fb7656f634 (patch) | |
tree | 9498dd48c73ea91305805a6e1967f32becd39d70 /Doc/c-api/exceptions.rst | |
parent | 458fc6f98ca9a838af5dcdff64fd48ae3eb64fa9 (diff) | |
parent | 82f34ada45f96c13eb68927d6beccdcbab2c77b3 (diff) | |
download | cpython-610bc6a211be33b390a9910943f1f9fb7656f634.zip cpython-610bc6a211be33b390a9910943f1f9fb7656f634.tar.gz cpython-610bc6a211be33b390a9910943f1f9fb7656f634.tar.bz2 |
merge 3.4 (#23221)
Diffstat (limited to 'Doc/c-api/exceptions.rst')
-rw-r--r-- | Doc/c-api/exceptions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst index bb8886d..814317b 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -350,7 +350,7 @@ Querying the error indicator 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) |