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/task.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/git/async/task.py') diff --git a/lib/git/async/task.py b/lib/git/async/task.py index 10b22649..d7f331b7 100644 --- a/lib/git/async/task.py +++ b/lib/git/async/task.py @@ -6,8 +6,11 @@ import weakref import sys import new +__all__ = ('OutputChannelTask', 'ThreadTaskBase', 'InputIteratorTaskBase', + 'InputIteratorThreadTask', 'InputChannelTask') + class OutputChannelTask(Node): - """Abstracts a named task as part of a set of interdependent tasks, which contains + """Abstracts a named task, which contains additional information on how the task should be queued and processed. Results of the item processing are sent to a write channel, which is to be -- cgit v1.2.1