A big code clean-up patch from Bastien Montagne, many thanks!

This commit is contained in:
2013-03-07 23:17:23 +00:00
parent b4b2269985
commit 4a92d82626
221 changed files with 986 additions and 798 deletions

View File

@@ -89,12 +89,12 @@ static char UnaryFunction1D___doc__[] =
"* :class:`UnaryFunction1DVectorViewShape`\n"
"* :class:`UnaryFunction1DVoid`\n";
static void UnaryFunction1D___dealloc__(BPy_UnaryFunction1D* self)
static void UnaryFunction1D___dealloc__(BPy_UnaryFunction1D *self)
{
Py_TYPE(self)->tp_free((PyObject*)self);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyObject * UnaryFunction1D___repr__(BPy_UnaryFunction1D* self)
static PyObject *UnaryFunction1D___repr__(BPy_UnaryFunction1D *self)
{
return PyUnicode_FromString("UnaryFunction1D");
}