Commit fb3a877a authored by Denis Bilenko's avatar Denis Bilenko

killall: make block=True the default

parent 79796028
......@@ -541,7 +541,7 @@ def _killall(greenlets, exception):
traceback.print_exc()
def killall(greenlets, exception=GreenletExit, block=False, timeout=None):
def killall(greenlets, exception=GreenletExit, block=True, timeout=None):
if block:
waiter = Waiter()
core.active_event(_killall3, greenlets, exception, waiter)
......
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