From b721bc5d81248206c2a65be214d83edc86c1560f Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Wed, 4 Sep 2013 13:05:34 +1000 Subject: [PATCH] Remove redundant local variables. --- src/_wrappers.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/_wrappers.c b/src/_wrappers.c index ef7cc45..b0c4162 100644 --- a/src/_wrappers.c +++ b/src/_wrappers.c @@ -1406,9 +1406,6 @@ static PyObject *WraptFunctionWrapperBase_call( PyObject *result = NULL; - Py_ssize_t len = 0; - int i = 0; - if (!kwds) { param_kwds = PyDict_New(); kwds = param_kwds; @@ -1670,9 +1667,6 @@ static PyObject *WraptBoundFunctionWrapper_call( PyObject *result = NULL; - Py_ssize_t len = 0; - int i = 0; - if (!kwds) { param_kwds = PyDict_New(); kwds = param_kwds; @@ -1778,9 +1772,6 @@ static PyObject *WraptBoundMethodWrapper_call( PyObject *result = NULL; - Py_ssize_t len = 0; - int i = 0; - if (self->instance == Py_None) { PyObject *module = NULL; PyObject *partial = NULL;