diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-25 14:23:42 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-25 14:23:42 (GMT) |
commit | a8803d21e75d486e1c3a037906b01eb2de82f5a7 (patch) | |
tree | 44151aa25f1faf7d75257ffc6a69212401001663 /Doc/c-api/exceptions.rst | |
parent | a7613aa06c3a5f53bfb6f01de777c6fe44c6fe82 (diff) | |
parent | 4398c12b472b1e7b653d273500bbcd9988eaec1f (diff) | |
download | cpython-a8803d21e75d486e1c3a037906b01eb2de82f5a7.zip cpython-a8803d21e75d486e1c3a037906b01eb2de82f5a7.tar.gz cpython-a8803d21e75d486e1c3a037906b01eb2de82f5a7.tar.bz2 |
Merge from 3.5.
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 ee51791..037b85c 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -396,7 +396,7 @@ Querying the error indicator by code that needs to save and restore the error indicator temporarily, e.g.:: { - PyObject **type, **value, **traceback; + PyObject *type, *value, *traceback; PyErr_Fetch(&type, &value, &traceback); /* ... code that might produce other errors ... */ |