From cac6e06cc9ef2903a15e594186445f3baa989a1a Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 11 Jun 2010 16:58:44 +0200 Subject: test_task: fixed import error, made all modules from x import * safe --- lib/git/async/thread.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/git/async/thread.py') diff --git a/lib/git/async/thread.py b/lib/git/async/thread.py index afe0d79d..96b4f0c4 100644 --- a/lib/git/async/thread.py +++ b/lib/git/async/thread.py @@ -7,6 +7,10 @@ import Queue import sys +__all__ = ('do_terminate_threads', 'terminate_threads', 'TerminatableThread', + 'WorkerThread') + + #{ Decorators def do_terminate_threads(whitelist=list()): -- cgit v1.2.1