From: Georg Brandl Date: Sun, 24 Jun 2012 11:55:35 +0000 (+0200) Subject: Remove unused variable. X-Git-Tag: v3.3.0b1~66 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9dcbfc353d8a3fb3b5e060e33b396bd50cbb8554;p=thirdparty%2FPython%2Fcpython.git Remove unused variable. --- diff --git a/Modules/operator.c b/Modules/operator.c index 25b0737dbfaa..bb3752ea1197 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;