This commit is contained in:
Benjamin Peterson 2017-01-31 23:31:20 -08:00
commit 2145387abc
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ static XxoObject *
newXxoObject(PyObject *arg)
{
XxoObject *self;
self = PyObject_New(XxoObject, (PyTypeObject*)Xxo_Type);
self = PyObject_GC_New(XxoObject, (PyTypeObject*)Xxo_Type);
if (self == NULL)
return NULL;
self->x_attr = NULL;