Remove a redundant statement from halfbinop().

This commit is contained in:
Guido van Rossum 1998-05-13 22:02:16 +00:00
parent ee918cb487
commit 4180cf1649
1 changed files with 0 additions and 1 deletions

View File

@ -1110,7 +1110,6 @@ halfbinop(v, w, opname, r_result, thisfunc, swapped)
return *r_result == NULL ? -1 : 0;
}
}
w = PyTuple_GetItem(coerced, 1);
}
func = PyObject_GetAttrString(v, opname);
if (func == NULL) {