cpython: 34e7b9879e60 (original) (raw)
Mercurial > cpython
changeset 105821:34e7b9879e60 3.5
Issue #29068: Fixed a typo in PyErr_Fetch example. Patch by Chi Hsuan Yen. [#29068]
Serhiy Storchaka storchaka@gmail.com | |
---|---|
date | Sun, 25 Dec 2016 16:22:23 +0200 |
parents | 75f9cca86fa1 |
children | 02acb2f9c908 172b2ac82037 |
files | Doc/c-api/exceptions.rst |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Doc/c-api/exceptions.rst 2 |
line wrap: on
line diff
--- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -381,7 +381,7 @@ Querying the error indicator by code that needs to save and restore the error indicator temporarily, e.g.:: {
PyObject **type, **value, **traceback;[](#l1.7)
PyObject *type, *value, *traceback;[](#l1.8) PyErr_Fetch(&type, &value, &traceback);[](#l1.9)