Commit 9a2325fa authored by Raymond Hettinger's avatar Raymond Hettinger

Fix unintended switch from a constant to a global in 56a3c0bc4634

parent a6cbff08
......@@ -380,7 +380,7 @@ def merge(*iterables):
while _len(h) > 1:
try:
while True:
while 1:
v, itnum, next = s = h[0]
yield v
s[0] = next() # raises StopIteration when exhausted
......
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