From: Benjamin Peterson Date: Wed, 18 Jul 2012 22:12:47 +0000 (-0700) Subject: remove unused variable X-Git-Tag: v3.3.0b2~166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=51ab2830bb88d9a1b2028fd128134a0361d821cf;p=python remove unused variable --- diff --git a/Python/compile.c b/Python/compile.c index 9c8879fecc..ff55220443 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -397,7 +397,7 @@ each key. static PyObject * dictbytype(PyObject *src, int scope_type, int flag, int offset) { - Py_ssize_t pos = 0, i = offset, scope, num_keys, key_i; + Py_ssize_t i = offset, scope, num_keys, key_i; PyObject *k, *v, *dest = PyDict_New(); PyObject *sorted_keys;