Commit e3fabd10 authored by Raymond Hettinger's avatar Raymond Hettinger

Handle 0-tuples which can be singletons.

parent 61024b91
...@@ -1919,7 +1919,7 @@ product_next(productobject *lz) ...@@ -1919,7 +1919,7 @@ product_next(productobject *lz)
Py_DECREF(old_result); Py_DECREF(old_result);
} }
/* Now, we've got the only copy so we can update it in-place */ /* Now, we've got the only copy so we can update it in-place */
assert (Py_REFCNT(result) == 1); assert (npools==0 || Py_REFCNT(result) == 1);
/* Update the pool indices right-to-left. Only advance to the /* Update the pool indices right-to-left. Only advance to the
next pool when the previous one rolls-over */ next pool when the previous one rolls-over */
......
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