diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-08-07 20:19:24 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-08-07 20:19:24 (GMT) |
commit | 4eb1a00cc1147cac7ceaa0217feb0b10d13940ea (patch) | |
tree | eb20e2fcc0ded88e6cf516f182498d2f120df771 /Doc/api | |
parent | 672d2ba7730799bcf20dc0061d3b91f990760913 (diff) | |
download | cpython-4eb1a00cc1147cac7ceaa0217feb0b10d13940ea.zip cpython-4eb1a00cc1147cac7ceaa0217feb0b10d13940ea.tar.gz cpython-4eb1a00cc1147cac7ceaa0217feb0b10d13940ea.tar.bz2 |
[Patch #1003861 from Dima Dorfman] Fix markup in concrete.tex:
PyObject* o -> PyObject *o to be consistent with the
rest of the file
- Correct markup for Py_True
- Remove duplicate description of PyBool_Check
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/concrete.tex | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index d569228..a77a584 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -121,13 +121,13 @@ There is no \cfunction{PyNone_Check()} function for the same reason. \withsubitem{(in modules types)}{\ttindex{IntType}} \end{cvardesc} -\begin{cfuncdesc}{int}{PyInt_Check}{PyObject* o} +\begin{cfuncdesc}{int}{PyInt_Check}{PyObject *o} Returns true if \var{o} is of type \cdata{PyInt_Type} or a subtype of \cdata{PyInt_Type}. \versionchanged[Allowed subtypes to be accepted]{2.2} \end{cfuncdesc} -\begin{cfuncdesc}{int}{PyInt_CheckExact}{PyObject* o} +\begin{cfuncdesc}{int}{PyInt_CheckExact}{PyObject *o} Returns true if \var{o} is of type \cdata{PyInt_Type}, but not a subtype of \cdata{PyInt_Type}. \versionadded{2.2} @@ -199,7 +199,7 @@ are only two booleans, \constant{Py_False} and \constant{Py_True}. As such, the normal creation and deletion functions don't apply to booleans. The following macros are available, however. -\begin{cfuncdesc}{int}{PyBool_Check}{PyObject* o} +\begin{cfuncdesc}{int}{PyBool_Check}{PyObject *o} Returns true if \var{o} is of type \cdata{PyBool_Type}. \versionadded{2.3} \end{cfuncdesc} @@ -221,16 +221,11 @@ booleans. The following macros are available, however. \end{csimplemacrodesc} \begin{csimplemacrodesc}{Py_RETURN_TRUE} -Return Py_True from a function, properly incrementing its reference -count. + Return \constant{Py_True} from a function, properly incrementing its + reference count. \versionadded{2.4} \end{csimplemacrodesc} -\begin{cfuncdesc}{int}{PyBool_Check}{PyObject* o} - Returns true if \var{o} is of type \cdata{PyBool_Type}. - \versionadded{2.3} -\end{cfuncdesc} - \begin{cfuncdesc}{int}{PyBool_FromLong}{long v} Returns \constant{Py_True} or \constant{Py_False} depending on the truth value of \var{v}. |