summaryrefslogtreecommitdiff
path: root/lib/git/async/pool.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-11 16:58:44 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-11 16:58:44 +0200
commitcac6e06cc9ef2903a15e594186445f3baa989a1a (patch)
tree66fe86c00d11163fe4c726675ab92914d47230ef /lib/git/async/pool.py
parent29eb123beb1c55e5db4aa652d843adccbd09ae18 (diff)
downloadgitpython-cac6e06cc9ef2903a15e594186445f3baa989a1a.tar.gz
test_task: fixed import error, made all modules from x import * safe
Diffstat (limited to 'lib/git/async/pool.py')
-rw-r--r--lib/git/async/pool.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/git/async/pool.py b/lib/git/async/pool.py
index 7ee3e8eb..cf14e47b 100644
--- a/lib/git/async/pool.py
+++ b/lib/git/async/pool.py
@@ -30,6 +30,8 @@ from time import sleep
import new
+__all__ = ('PoolReader', 'Pool', 'ThreadPool')
+
class PoolReader(CallbackReader):
"""A reader designed to read from channels which take part in pools
It acts like a handle to the underlying task in the pool."""