diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-11 16:58:44 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-11 16:58:44 +0200 |
commit | cac6e06cc9ef2903a15e594186445f3baa989a1a (patch) | |
tree | 66fe86c00d11163fe4c726675ab92914d47230ef /lib/git/async/channel.py | |
parent | 29eb123beb1c55e5db4aa652d843adccbd09ae18 (diff) | |
download | gitpython-cac6e06cc9ef2903a15e594186445f3baa989a1a.tar.gz |
test_task: fixed import error, made all modules from x import * safe
Diffstat (limited to 'lib/git/async/channel.py')
-rw-r--r-- | lib/git/async/channel.py | 3 |
1 files changed, 3 insertions, 0 deletions
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 |