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;
return set_merge(so, other);
if (PyDict_Check(other)) {
- PyObject *key, *value;
+ PyObject *value;
int pos = 0;
while (PyDict_Next(other, &pos, &key, &value)) {
if (set_add_key(so, key) == -1)
PyObject *callback = PyTuple_GET_ITEM(tuple, i * 2 + 1);
if (callback != NULL) {
- PyObject *current = PyTuple_GET_ITEM(tuple, i * 2);
- handle_callback((PyWeakReference *)current, callback);
+ PyObject *item = PyTuple_GET_ITEM(tuple, i * 2);
+ handle_callback((PyWeakReference *)item, callback);
}
}
Py_DECREF(tuple);