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 0afeba4 commit 9b2b657Copy full SHA for 9b2b657
Modules/_testcapimodule.c
@@ -53,7 +53,7 @@ get_testerror(PyObject *self) {
53
}
54
55
static void
56
-simple_object_destructor(PyObject *self)
+simple_object_dealloc(PyObject *self)
57
{
58
PyObject_Free(self);
59
@@ -177,7 +177,7 @@ static PyTypeObject _HashInheritanceTester_Type = {
177
"hashinheritancetester", /* Name of this type */
178
sizeof(PyObject), /* Basic object size */
179
0, /* Item size for varobject */
180
- simple_object_destructor, /* tp_dealloc */
+ simple_object_dealloc, /* tp_dealloc */
181
0, /* tp_vectorcall_offset */
182
0, /* tp_getattr */
183
0, /* tp_setattr */
0 commit comments