Commit d9e50827 authored by Denis Bilenko's avatar Denis Bilenko

minor comment fix

parent f90edc40
...@@ -145,7 +145,7 @@ class GreenletSet(object): ...@@ -145,7 +145,7 @@ class GreenletSet(object):
if kwds is None: if kwds is None:
kwds = {} kwds = {}
if self.full(): if self.full():
# cannot call spawn() directly because it blocks # cannot call spawn() directly because it will block
return Greenlet.spawn(self.apply_cb, func, args, kwds, callback) return Greenlet.spawn(self.apply_cb, func, args, kwds, callback)
else: else:
greenlet = self.spawn(func, *args, **kwds) greenlet = self.spawn(func, *args, **kwds)
......
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