Commit 2f93644c authored by Fred Drake's avatar Fred Drake

Clarify documentation for PyErr_SetObject() to describe the reference

count behavior.
parent 117ac85c
...@@ -124,7 +124,7 @@ for each thread. ...@@ -124,7 +124,7 @@ for each thread.
\begin{cfuncdesc}{void}{PyErr_SetObject}{PyObject *type, PyObject *value} \begin{cfuncdesc}{void}{PyErr_SetObject}{PyObject *type, PyObject *value}
This function is similar to \cfunction{PyErr_SetString()} but lets This function is similar to \cfunction{PyErr_SetString()} but lets
you specify an arbitrary Python object for the ``value'' of the you specify an arbitrary Python object for the ``value'' of the
exception. You need not increment its reference count. exception. One reference to \var{value} is stolen.
\end{cfuncdesc} \end{cfuncdesc}
\begin{cfuncdesc}{PyObject*}{PyErr_Format}{PyObject *exception, \begin{cfuncdesc}{PyObject*}{PyErr_Format}{PyObject *exception,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment