Remove redundant local variables.

This commit is contained in:
Graham Dumpleton
2013-09-04 13:05:34 +10:00
parent 377eb7137a
commit b721bc5d81

View File

@@ -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;