summaryrefslogtreecommitdiffstats
path: root/Doc/api
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2003-07-07 17:20:40 (GMT)
committerFred Drake <fdrake@acm.org>2003-07-07 17:20:40 (GMT)
commitb93b3e790e0c9d8e929b0399c098f35f85033fe0 (patch)
treec37e0567aac69827cac08a3a7f27d8a997e49555 /Doc/api
parent5ec79681d2848c8914a6a67b47ab020538f6cecb (diff)
downloadcpython-b93b3e790e0c9d8e929b0399c098f35f85033fe0.zip
cpython-b93b3e790e0c9d8e929b0399c098f35f85033fe0.tar.gz
cpython-b93b3e790e0c9d8e929b0399c098f35f85033fe0.tar.bz2
Error noted in email to python-docs: PyObject corresponds to
PyObject_HEAD, not PyObject_VAR_HEAD.
Diffstat (limited to 'Doc/api')
-rw-r--r--Doc/api/newtypes.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex
index b7014c4..2c5982d 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}