summaryrefslogtreecommitdiff
path: root/python/qpid/messaging/endpoints.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2010-02-19 13:21:15 +0000
committerRafael H. Schloming <rhs@apache.org>2010-02-19 13:21:15 +0000
commit53b998011e294f49e0f77e829e1a50619e0bd724 (patch)
tree07746343872bc7ab775635bcae70e57a4a4ae44f /python/qpid/messaging/endpoints.py
parent0eb7157142d65bbbca47704744b72ae4fa5af157 (diff)
downloadqpid-python-53b998011e294f49e0f77e829e1a50619e0bd724.tar.gz
moved Pattern into driver
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@911807 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/messaging/endpoints.py')
-rw-r--r--python/qpid/messaging/endpoints.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/python/qpid/messaging/endpoints.py b/python/qpid/messaging/endpoints.py
index 2337986ecb..596866de66 100644
--- a/python/qpid/messaging/endpoints.py
+++ b/python/qpid/messaging/endpoints.py
@@ -191,21 +191,6 @@ class Connection:
ssn.close()
self.disconnect()
-class Pattern:
- """
- The pattern filter matches the supplied wildcard pattern against a
- message subject.
- """
-
- def __init__(self, value):
- self.value = value
-
- # XXX: this should become part of the driver
- def _bind(self, sst, exchange, queue):
- from qpid.ops import ExchangeBind
- sst.write_cmd(ExchangeBind(exchange=exchange, queue=queue,
- binding_key=self.value.replace("*", "#")))
-
class Session:
"""