diff options
author | Fred Drake <fdrake@acm.org> | 2003-07-07 17:20:40 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-07-07 17:20:40 (GMT) |
commit | b93b3e790e0c9d8e929b0399c098f35f85033fe0 (patch) | |
tree | c37e0567aac69827cac08a3a7f27d8a997e49555 /Doc/api | |
parent | 5ec79681d2848c8914a6a67b47ab020538f6cecb (diff) | |
download | cpython-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.tex | 2 |
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} |