Commit 75da912c authored by Denis Bilenko's avatar Denis Bilenko

proc.py: fix typo

parent ce16f232
...@@ -208,7 +208,7 @@ def killall(sources, exception=ProcExit, block=False, polling_period=0.2): ...@@ -208,7 +208,7 @@ def killall(sources, exception=ProcExit, block=False, polling_period=0.2):
try: try:
joinall(alive, trap_errors=True) joinall(alive, trap_errors=True)
except TypeError: except TypeError:
rawgreenlet._joinall(alive, polling_period=polling_period) rawgreenlet.joinall(alive, polling_period=polling_period)
# QQQ a) use links for all the greenlets we can and poll the others # QQQ a) use links for all the greenlets we can and poll the others
# QQQ b) have only one unversal version of killall, waitall, joinall etc # QQQ b) have only one unversal version of killall, waitall, joinall etc
# QQQ the current dichotomy of greenlets and procs is confusing # QQQ the current dichotomy of greenlets and procs is confusing
......
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