Commit 5aa4bb80 authored by Jason Madden's avatar Jason Madden

Add PoolFull to __all__

parent 28cba07d
...@@ -28,7 +28,7 @@ from gevent.timeout import Timeout ...@@ -28,7 +28,7 @@ from gevent.timeout import Timeout
from gevent.event import Event from gevent.event import Event
from gevent.lock import Semaphore, DummySemaphore from gevent.lock import Semaphore, DummySemaphore
__all__ = ['Group', 'Pool', 'Full'] __all__ = ['Group', 'Pool', 'PoolFull']
class IMapUnordered(Greenlet): class IMapUnordered(Greenlet):
...@@ -650,9 +650,8 @@ class Failure(object): ...@@ -650,9 +650,8 @@ class Failure(object):
class PoolFull(QueueFull): class PoolFull(QueueFull):
""" """
Raised when a Pool is full and an attempt was made to Raised when a Pool is full and an attempt was made to
add a new greenlet to it. add a new greenlet to it in non-blocking mode.
""" """
pass
class Pool(Group): class Pool(Group):
......
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