Kaydet (Commit) 0e1af282 authored tarafından Ezio Melotti's avatar Ezio Melotti

Fix typo.

üst 207d2299
...@@ -831,10 +831,10 @@ setiter_reduce(setiterobject *si) ...@@ -831,10 +831,10 @@ setiter_reduce(setiterobject *si)
if (!list) if (!list)
return NULL; return NULL;
/* copy the itertor state */ /* copy the iterator state */
tmp = *si; tmp = *si;
Py_XINCREF(tmp.si_set); Py_XINCREF(tmp.si_set);
/* iterate the temporary into a list */ /* iterate the temporary into a list */
for(;;) { for(;;) {
PyObject *element = setiter_iternext(&tmp); PyObject *element = setiter_iternext(&tmp);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment