summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/exceptions.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-25 14:23:42 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-25 14:23:42 (GMT)
commita8803d21e75d486e1c3a037906b01eb2de82f5a7 (patch)
tree44151aa25f1faf7d75257ffc6a69212401001663 /Doc/c-api/exceptions.rst
parenta7613aa06c3a5f53bfb6f01de777c6fe44c6fe82 (diff)
parent4398c12b472b1e7b653d273500bbcd9988eaec1f (diff)
downloadcpython-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.rst2
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 ... */