Commit 6d3db700 authored by Skip Montanaro's avatar Skip Montanaro

Add missing doc for Py_True/Py_False. Use the correct macro to define

Py_RETURN_FALSE and Py_RETURN_TRUE.
parent a18331de
......@@ -204,17 +204,27 @@ booleans. The following macros are available, however.
\versionadded{2.3}
\end{cfuncdesc}
\begin{cfuncdesc}{Py_RETURN_FALSE}
Return Py_False from a function, properly incrementing its reference
count.
\begin{cvardesc}{PyObject*}{Py_False}
The Python \code{False} object. This object has no methods. It needs to
be treated just like any other object with respect to reference counts.
\end{cvardesc}
\begin{cvardesc}{PyObject*}{Py_True}
The Python \code{True} object. This object has no methods. It needs to
be treated just like any other object with respect to reference counts.
\end{cvardesc}
\begin{csimplemacrodesc}{Py_RETURN_FALSE}
Return \constant{Py_False} from a function, properly incrementing its
reference count.
\versionadded{2.4}
\end{cfuncdesc}
\end{csimplemacrodesc}
\begin{cfuncdesc}{Py_RETURN_TRUE}
\begin{csimplemacrodesc}{Py_RETURN_TRUE}
Return Py_True from a function, properly incrementing its reference
count.
\versionadded{2.4}
\end{cfuncdesc}
\end{csimplemacrodesc}
\begin{cfuncdesc}{int}{PyBool_Check}{PyObject* o}
Returns true if \var{o} is of type \cdata{PyBool_Type}.
......
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