Comment 2 for bug 495392

Revision history for this message
Siegfried Gevatter (rainct) wrote :

Looks good.

I suppose that just doing «NULL_EVENT = ([], [], ")» instead of all this D-Bus fuss didn't work?

Also, personally I'd change:
=====
if event is None:
    continue
event._make_dbus_sendable()
=====
to:
=====
if event:
    event._make_dbus_sendable()
=====
But this is just nitpicking and it's up to you :).