Use function instead of macro spellings for PyObject_memorystuff.

This commit is contained in:
Tim Peters 2002-05-23 15:51:20 +00:00
parent c9ca5c82f9
commit bf9cb3ff1a
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ static xxobject *
newxxobject(PyObject *arg)
{
xxobject *xp;
xp = PyObject_NEW(xxobject, &Xxtype);
xp = PyObject_New(xxobject, &Xxtype);
if (xp == NULL)
return NULL;
xp->x_attr = NULL;
@ -39,7 +39,7 @@ static void
xx_dealloc(xxobject *xp)
{
Py_XDECREF(xp->x_attr);
PyObject_DEL(xp);
PyObject_Del(xp);
}
static PyObject *