diff options
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r-- | Objects/complexobject.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 4580ef2..69dd502 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -1040,8 +1040,7 @@ static PyNumberMethods complex_as_number = { }; PyTypeObject PyComplex_Type = { - PyObject_HEAD_INIT(&PyType_Type) - 0, + PyVarObject_HEAD_INIT(&PyType_Type, 0) "complex", sizeof(PyComplexObject), 0, |