diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 16:07:19 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 16:07:19 +0200 |
commit | 65c9fe0baa579173afa5a2d463ac198d06ef4993 (patch) | |
tree | ea28ca1e97cbb9ada71abfadd90ac708c43fbabf /lib/git/odb/channel.py | |
parent | c69b6b979e3d6bd01ec40e75b92b21f7a391f0ca (diff) | |
download | gitpython-65c9fe0baa579173afa5a2d463ac198d06ef4993.tar.gz |
A code donation: Donating a worker thread implementation inclduding tests to Git-Python. I have the feeling it can do much good here :)
Diffstat (limited to 'lib/git/odb/channel.py')
-rw-r--r-- | lib/git/odb/channel.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/odb/channel.py b/lib/git/odb/channel.py index f6469d42..32eef6e1 100644 --- a/lib/git/odb/channel.py +++ b/lib/git/odb/channel.py @@ -30,6 +30,7 @@ class Channel(object): # END constructor mode return object.__new__(cls) + class WChannel(Channel): """The write end of a channel""" __slots__ = ('_closed', '_queue') |