summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 7afc576..3e36961 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1006,9 +1006,8 @@ dict_items(register dictobject *mp)
ep = mp->ma_table;
mask = mp->ma_mask;
for (i = 0, j = 0; i <= mask; i++) {
- if (ep[i].me_value != NULL) {
+ if ((value=ep[i].me_value) != NULL) {
key = ep[i].me_key;
- value = ep[i].me_value;
item = PyList_GET_ITEM(v, j);
Py_INCREF(key);
PyTuple_SET_ITEM(item, 0, key);