From e43a353d27f1b9643c21ccff53a7759fc3dcdffe Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Tue, 24 May 2005 00:21:07 +0000 Subject: * python/decorators.py: import dbus_bindings * python/matchrules.py (SignalMatchRule, SignalMatchTree, SignalMatchNode): new classes that implement wildcard signal callback matching using a tree lookup. Heavily modified from a patch sent by Celso Pinto (fd.o bug #3241) * _dbus.py (add_signal_receiver, remove_signal_receiver, _signal_func): use new match classes to handle signals. --- python/examples/example-signal-recipient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/examples/example-signal-recipient.py') diff --git a/python/examples/example-signal-recipient.py b/python/examples/example-signal-recipient.py index 1dbf6a65..2f932a9b 100644 --- a/python/examples/example-signal-recipient.py +++ b/python/examples/example-signal-recipient.py @@ -12,8 +12,8 @@ def handle_error(e): def emit_signal(): #call the emitHelloSignal method async - object.emitHelloSignal(dbus_interface="org.designfu.TestService", - reply_handler = handle_reply, error_handler = handle_error) + object.emitHelloSignal(dbus_interface="org.designfu.TestService") + #reply_handler = handle_reply, error_handler = handle_error) return True bus = dbus.SessionBus() -- cgit