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/channel.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/git/async/channel.py') diff --git a/lib/git/async/channel.py b/lib/git/async/channel.py index 9b019707..ae476cda 100644 --- a/lib/git/async/channel.py +++ b/lib/git/async/channel.py @@ -13,6 +13,9 @@ from util import ( from time import time import sys +__all__ = ('Channel', 'SerialChannel', 'Writer', 'CallbackWriter', 'Reader', + 'CallbackReader', 'mkchannel', 'ReadOnly') + #{ Classes class Channel(object): """A channel is similar to a file like object. It has a write end as well as one or -- cgit v1.2.1