Whitespace normalization.

This commit is contained in:
Tim Peters 2002-05-23 15:49:38 +00:00
parent 8ac1495a6a
commit c9ca5c82f9
1 changed files with 7 additions and 7 deletions

View File

@ -165,8 +165,8 @@ xx_new(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args, ":new")) if (!PyArg_ParseTuple(args, ":new"))
return NULL; return NULL;
rv = newXxoObject(args); rv = newXxoObject(args);
if ( rv == NULL ) if (rv == NULL)
return NULL; return NULL;
return (PyObject *)rv; return (PyObject *)rv;
} }