summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-01-10 17:36:44 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-01-10 17:36:44 (GMT)
commit35b80e04421b566f63d6dcb90e8ffe4a0a8be597 (patch)
treef75bd08ab888cd26a5f700ce51c86382ee4fdbc0 /Doc/c-api
parenteee9583065ec887175fddddfd2292a438f475631 (diff)
downloadcpython-35b80e04421b566f63d6dcb90e8ffe4a0a8be597.zip
cpython-35b80e04421b566f63d6dcb90e8ffe4a0a8be597.tar.gz
cpython-35b80e04421b566f63d6dcb90e8ffe4a0a8be597.tar.bz2
tp_iter only exists with Py_TPFLAGS_HAVE_ITER #4901
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/typeobj.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst
index 463223a..24f508e 100644
--- a/Doc/c-api/typeobj.rst
+++ b/Doc/c-api/typeobj.rst
@@ -743,7 +743,7 @@ set.
:attr:`__weakref__`, the type inherits its :attr:`tp_weaklistoffset` from its
base type.
-The next two fields only exist if the :const:`Py_TPFLAGS_HAVE_CLASS` flag bit is
+The next two fields only exist if the :const:`Py_TPFLAGS_HAVE_ITER` flag bit is
set.