We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3ba0fe commit 422a515Copy full SHA for 422a515
Objects/templateobject.c
@@ -442,7 +442,7 @@ PyTypeObject _PyTemplate_Type = {
442
.tp_doc = PyDoc_STR("Template object"),
443
.tp_basicsize = sizeof(templateobject),
444
.tp_itemsize = 0,
445
- .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | _Py_TPFLAGS_MATCH_SELF,
+ .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
446
.tp_as_sequence = &template_as_sequence,
447
.tp_new = (newfunc) template_new,
448
.tp_dealloc = (destructor) template_dealloc,
0 commit comments