summaryrefslogtreecommitdiffstats
path: root/Doc/extending
diff options
context:
space:
mode:
authorWu Wei <weiwu@cacheme.net>2019-04-22 11:08:20 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-04-22 11:08:20 (GMT)
commit662ebd2ab2047aeae9689ad254b39915c38069fd (patch)
tree4a0caa4811cf0d172f2b33de95ea4f4b02b746ec /Doc/extending
parent9b21856b0fcda949de239edc7aa6cf3f2f4f77a3 (diff)
downloadcpython-662ebd2ab2047aeae9689ad254b39915c38069fd.zip
cpython-662ebd2ab2047aeae9689ad254b39915c38069fd.tar.gz
cpython-662ebd2ab2047aeae9689ad254b39915c38069fd.tar.bz2
Doc: add the missing ".tp_flags" in type definition (GH-12902)
Diffstat (limited to 'Doc/extending')
-rw-r--r--Doc/extending/newtypes_tutorial.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/extending/newtypes_tutorial.rst b/Doc/extending/newtypes_tutorial.rst
index bb8a40d..b4bf9b9 100644
--- a/Doc/extending/newtypes_tutorial.rst
+++ b/Doc/extending/newtypes_tutorial.rst
@@ -92,6 +92,7 @@ The second bit is the definition of the type object. ::
.tp_doc = "Custom objects",
.tp_basicsize = sizeof(CustomObject),
.tp_itemsize = 0,
+ .tp_flags = Py_TPFLAGS_DEFAULT,
.tp_new = PyType_GenericNew,
};