mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Remove some shadowed variables
This commit is contained in:
parent
76dc081dd9
commit
0c6e2f1640
3 changed files with 4 additions and 4 deletions
|
|
@ -415,7 +415,7 @@ binary_op1(PyObject *v, PyObject *w, const int op_slot)
|
|||
binaryfunc slot;
|
||||
slot = NB_BINOP(mv, op_slot);
|
||||
if (slot) {
|
||||
PyObject *x = slot(v, w);
|
||||
x = slot(v, w);
|
||||
Py_DECREF(v);
|
||||
Py_DECREF(w);
|
||||
return x;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue