summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-05-30 12:17:11 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-05-30 12:17:11 (GMT)
commit4b3035d0b8f10112e2e9f348ded2bd721ad6ddb8 (patch)
tree8db94aa3f97900d97800573d7a89883e412654bc /Objects
parent813363743d4f46062b1d5149d62252c0e2794289 (diff)
downloadcpython-4b3035d0b8f10112e2e9f348ded2bd721ad6ddb8.zip
cpython-4b3035d0b8f10112e2e9f348ded2bd721ad6ddb8.tar.gz
cpython-4b3035d0b8f10112e2e9f348ded2bd721ad6ddb8.tar.bz2
Remove declaration for unused variable.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/complexobject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index 3577a29..dacafe6 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;