From: Fred Drake Date: Mon, 7 Jul 2003 17:20:40 +0000 (+0000) Subject: Error noted in email to python-docs: PyObject corresponds to X-Git-Tag: v2.3c1~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b93b3e790e0c9d8e929b0399c098f35f85033fe0;p=python Error noted in email to python-docs: PyObject corresponds to PyObject_HEAD, not PyObject_VAR_HEAD. --- diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex index b7014c4070..2c5982d84b 100644 --- a/Doc/api/newtypes.tex +++ b/Doc/api/newtypes.tex @@ -148,7 +148,7 @@ Python objects. object as an object. In a normal ``release'' build, it contains only the objects reference count and a pointer to the corresponding type object. It corresponds to the fields defined by the - expansion of the \code{PyObject_VAR_HEAD} macro. + expansion of the \code{PyObject_HEAD} macro. \end{ctypedesc} \begin{ctypedesc}{PyVarObject}