Removed unused variables.

This commit is contained in:
Harry Moffat 2007-12-28 00:58:22 +00:00
parent ec03df32ad
commit 892eee57ee

View file

@ -28,7 +28,7 @@ py_func_newcombo(PyObject *self, PyObject *args)
static PyObject*
py_func_derivative(PyObject *self, PyObject *args)
{
int type, n, m;
int n;
if (!PyArg_ParseTuple(args, "i:func_derivative", &n))
return NULL;
int nn = func_derivative(n);