From 662ebd2ab2047aeae9689ad254b39915c38069fd Mon Sep 17 00:00:00 2001 From: Wu Wei Date: Mon, 22 Apr 2019 19:08:20 +0800 Subject: Doc: add the missing ".tp_flags" in type definition (GH-12902) --- Doc/extending/newtypes_tutorial.rst | 1 + 1 file changed, 1 insertion(+) (limited to 'Doc/extending') diff --git a/Doc/extending/newtypes_tutorial.rst b/Doc/extending/newtypes_tutorial.rst index bb8a40d0fb..b4bf9b9e6f 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, }; -- cgit v1.2.1