Commit 2b3f4c1e authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.5 (#29398)

parents cd12f7cb ec977c30
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment