remove unnecessary tp_dealloc (GH-13647)

This commit is contained in:
Inada Naoki 2019-05-29 17:23:27 +09:00 committed by GitHub
parent ca80495592
commit 7d408697a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 30 deletions

View file

@ -343,12 +343,6 @@ PyComplex_AsCComplex(PyObject *op)
}
}
static void
complex_dealloc(PyObject *op)
{
op->ob_type->tp_free(op);
}
static PyObject *
complex_repr(PyComplexObject *v)
{
@ -1118,7 +1112,7 @@ PyTypeObject PyComplex_Type = {
"complex",
sizeof(PyComplexObject),
0,
complex_dealloc, /* tp_dealloc */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */