classmethod *cm = (classmethod *)self;
PyObject *callable;
- if (!PyArg_ParseTuple(args, "O:callable", &callable))
+ if (!PyArg_ParseTuple(args, "O:classmethod", &callable))
return -1;
Py_INCREF(callable);
cm->cm_callable = callable;
staticmethod *sm = (staticmethod *)self;
PyObject *callable;
- if (!PyArg_ParseTuple(args, "O:callable", &callable))
+ if (!PyArg_ParseTuple(args, "O:staticmethod", &callable))
return -1;
Py_INCREF(callable);
sm->sm_callable = callable;