diff options
author | Rafael H. Schloming <rhs@apache.org> | 2009-09-01 16:45:12 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2009-09-01 16:45:12 +0000 |
commit | d80effa42df23ba408c221355de1d1d1bb21193e (patch) | |
tree | 58ffe075171e1f0501eb53495298b95a0b3afa56 /python/qpid/messaging.py | |
parent | 0576f88247e5d03f5a86fa1ebdd9fb25089b7f1e (diff) | |
download | qpid-python-d80effa42df23ba408c221355de1d1d1bb21193e.tar.gz |
added missing names to __all__
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@810115 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/messaging.py')
-rw-r--r-- | python/qpid/messaging.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/python/qpid/messaging.py b/python/qpid/messaging.py index e9266600ff..4fd2900663 100644 --- a/python/qpid/messaging.py +++ b/python/qpid/messaging.py @@ -1277,5 +1277,7 @@ class Driver(Lockable): msg._transfer_id = message.id return msg -__all__ = ["Connection", "ConnectionError", "ConnectError", "Pattern", "Session", "Sender", "Receiver", "Message", - "ReceiveError", "Empty", "SendError", "InsufficientCapacity", "timestamp", "uuid4"] +__all__ = ["Connection", "Session", "Sender", "Receiver", "Pattern", "Message", + "ConnectionError", "ConnectError", "SessionError", "Disconnected", + "SendError", "InsufficientCapacity", "ReceiveError", "Empty", + "timestamp", "uuid4"] |