From: Mark Dickinson Date: Sun, 30 May 2010 12:17:11 +0000 (+0000) Subject: Remove declaration for unused variable. X-Git-Tag: v2.7rc1~60 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b3035d0b8f10112e2e9f348ded2bd721ad6ddb8;p=python Remove declaration for unused variable. --- diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 3577a29a39..dacafe69b6 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -783,7 +783,6 @@ complex_coerce(PyObject **pv, PyObject **pw) static PyObject * complex_richcompare(PyObject *v, PyObject *w, int op) { - int c; Py_complex i, j; PyObject *res;