summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-06-24 11:55:35 (GMT)
committerGeorg Brandl <georg@python.org>2012-06-24 11:55:35 (GMT)
commit9dcbfc353d8a3fb3b5e060e33b396bd50cbb8554 (patch)
tree0ae682ab4eafe14c65fb8cdabd9ada28072240a0
parent93b7d7e4b9c4115494132bbe82ca9851813e81d7 (diff)
downloadcpython-9dcbfc353d8a3fb3b5e060e33b396bd50cbb8554.zip
cpython-9dcbfc353d8a3fb3b5e060e33b396bd50cbb8554.tar.gz
cpython-9dcbfc353d8a3fb3b5e060e33b396bd50cbb8554.tar.bz2
Remove unused variable.
-rw-r--r--Modules/operator.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/operator.c b/Modules/operator.c
index 25b0737..bb3752e 100644
--- a/Modules/operator.c
+++ b/Modules/operator.c
@@ -225,7 +225,6 @@ compare_digest(PyObject *self, PyObject *args)
{
PyObject *a, *b;
int rc;
- PyObject *result;
if (!PyArg_ParseTuple(args, "OO:compare_digest", &a, &b)) {
return NULL;