We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e88d111 commit 92fd148Copy full SHA for 92fd148
Objects/interpolationobject.c
@@ -118,7 +118,7 @@ PyTypeObject _PyInterpolation_Type = {
118
.tp_doc = PyDoc_STR("Interpolation object"),
119
.tp_basicsize = sizeof(interpolationobject),
120
.tp_itemsize = 0,
121
- .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | _Py_TPFLAGS_MATCH_SELF,
+ .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,
122
.tp_new = (newfunc) interpolation_new,
123
.tp_alloc = PyType_GenericAlloc,
124
.tp_dealloc = (destructor) interpolation_dealloc,
0 commit comments