Skip to content

Commit 92fd148

Browse files
committed
Remove unnecessary tp_flag from interpolation type
1 parent e88d111 commit 92fd148

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/interpolationobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ PyTypeObject _PyInterpolation_Type = {
118118
.tp_doc = PyDoc_STR("Interpolation object"),
119119
.tp_basicsize = sizeof(interpolationobject),
120120
.tp_itemsize = 0,
121-
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | _Py_TPFLAGS_MATCH_SELF,
121+
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,
122122
.tp_new = (newfunc) interpolation_new,
123123
.tp_alloc = PyType_GenericAlloc,
124124
.tp_dealloc = (destructor) interpolation_dealloc,

0 commit comments

Comments
 (0)