Merge branch 'blender-v2.93-release'

This commit is contained in:
Campbell Barton 2021-05-11 11:28:46 +10:00
commit 7d187e91bb
1 changed files with 0 additions and 2 deletions

View File

@ -760,7 +760,6 @@ static PyObject *BPy_IDGroup_iter(BPy_IDProperty *self)
iter->group = self;
iter->mode = IDPROP_ITER_KEYS;
iter->cur = self->prop->data.group.first;
Py_XINCREF(iter);
return (PyObject *)iter;
}
@ -933,7 +932,6 @@ static PyObject *BPy_IDGroup_iter_items(BPy_IDProperty *self)
iter->group = self;
iter->mode = IDPROP_ITER_ITEMS;
iter->cur = self->prop->data.group.first;
Py_XINCREF(iter);
return (PyObject *)iter;
}