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;