Browse Source

Fix typo.

pull/224/head
Ezio Melotti 13 years ago
parent
commit
0e1af282b8
  1. 4
      Objects/setobject.c

4
Objects/setobject.c

@ -831,10 +831,10 @@ setiter_reduce(setiterobject *si)
if (!list)
return NULL;
/* copy the itertor state */
/* copy the iterator state */
tmp = *si;
Py_XINCREF(tmp.si_set);
/* iterate the temporary into a list */
for(;;) {
PyObject *element = setiter_iternext(&tmp);

Loading…
Cancel
Save