From: Georg Brandl Date: Thu, 1 Jun 2006 08:27:32 +0000 (+0000) Subject: Correctly allocate complex types with tp_alloc. (bug #1498638) X-Git-Tag: v2.5b1~312 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b50c63a23227d542b094432525d2f857be648ef;p=python Correctly allocate complex types with tp_alloc. (bug #1498638) --- diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 17aef8faad..4c6ea39dca 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -188,7 +188,7 @@ complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval) { PyObject *op; - op = PyType_GenericAlloc(type, 0); + op = type->tp_alloc(type, 0); if (op != NULL) ((PyComplexObject *)op)->cval = cval; return op; @@ -1023,7 +1023,7 @@ PyTypeObject PyComplex_Type = { 0, /* tp_descr_set */ 0, /* tp_dictoffset */ 0, /* tp_init */ - 0, /* tp_alloc */ + PyType_GenericAlloc, /* tp_alloc */ complex_new, /* tp_new */ PyObject_Del, /* tp_free */ };