diff options
author | Georg Brandl <georg@python.org> | 2006-02-17 08:56:33 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-17 08:56:33 (GMT) |
commit | 1b6726732c63d69f45f80deabe8435c2a6347db4 (patch) | |
tree | d024a475ab88c747afa65d60f3e252040e49361e /Doc/api | |
parent | 86d662602d18dccbae4ee7bf23564263dee7141e (diff) | |
download | cpython-1b6726732c63d69f45f80deabe8435c2a6347db4.zip cpython-1b6726732c63d69f45f80deabe8435c2a6347db4.tar.gz cpython-1b6726732c63d69f45f80deabe8435c2a6347db4.tar.bz2 |
Bug #1432350: arrayobject should use 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 a95f836..bfce26c 100644 --- a/Doc/api/newtypes.tex +++ b/Doc/api/newtypes.tex @@ -188,7 +188,7 @@ These macros are used in the definition of \ctype{PyObject} and instance. This macro always expands to: \begin{verbatim} PyObject_HEAD - int ob_size; + Py_ssize_t ob_size; \end{verbatim} Note that \csimplemacro{PyObject_HEAD} is part of the expansion, and that its own expansion varies depending on the definition of |