summaryrefslogtreecommitdiffstats
path: root/python/proxies.py
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2005-08-24 16:01:09 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2005-08-24 16:01:09 +0000
commitb0d3522c6cfcfeb2608f4f284906a562b2d7964a (patch)
tree374f60c0647bc50977d345770af0ee452882e79a /python/proxies.py
parent96bc670d08b2e97d95cbe5f4e24faed1c7e5ea5c (diff)
* Release 0.36.1dbus-0.36.1
* python/_dbus.py: (Interface::connect_to_signal): propigate keywords for match on args (Bus::add_signal_receiver): Fix typo s/dbus_inteface/dbus_interface * python/proxies.py (ProxyObject::connect_to_signal): propigate keywords for match on args * Makefile.am: point everything to pyexecdir since python borks on multilib
Diffstat (limited to 'python/proxies.py')
-rw-r--r--python/proxies.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/proxies.py b/python/proxies.py
index c7dc02be..42866426 100644
--- a/python/proxies.py
+++ b/python/proxies.py
@@ -105,12 +105,13 @@ class ProxyObject:
(result, self._pending_introspect) = self._Introspect()
- def connect_to_signal(self, signal_name, handler_function, dbus_interface=None):
+ def connect_to_signal(self, signal_name, handler_function, dbus_interface=None, **keywords):
self._bus.add_signal_receiver(handler_function,
signal_name=signal_name,
dbus_interface=dbus_interface,
named_service=self._named_service,
- path=self._object_path)
+ path=self._object_path,
+ **keywords)
def _Introspect(self):
message = dbus_bindings.MethodCall(self._object_path, 'org.freedesktop.DBus.Introspectable', 'Introspect')