summaryrefslogtreecommitdiff
path: root/qpid/python
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2009-09-01 16:45:12 +0000
committerRafael H. Schloming <rhs@apache.org>2009-09-01 16:45:12 +0000
commit943264c4e9efe0865b85dcced05a8348e8d972e2 (patch)
tree09ec89581c66c58255aba919c3b07899b98334ce /qpid/python
parentce9f7271b244e5b9a0e853f6fb78976db2d7326a (diff)
downloadqpid-python-943264c4e9efe0865b85dcced05a8348e8d972e2.tar.gz
added missing names to __all__
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@810115 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
-rw-r--r--qpid/python/qpid/messaging.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/qpid/python/qpid/messaging.py b/qpid/python/qpid/messaging.py
index e9266600ff..4fd2900663 100644
--- a/qpid/python/qpid/messaging.py
+++ b/qpid/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"]