We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a7ae2f commit f674dd3Copy full SHA for f674dd3
dbussy.py
@@ -6273,6 +6273,20 @@ def to_string(obj, indent) :
6273
),
6274
],
6275
6276
+ DBUS.INTERFACE_LOCAL :
6277
+ # note implementation of this is hard-coded inside, and specific to, libdbus
6278
+ Introspection.Interface
6279
+ (
6280
+ name = DBUS.INTERFACE_LOCAL,
6281
+ signals =
6282
+ [
6283
+ Introspection.Interface.Signal(name = "Disconnected"),
6284
+ # auto-generated by libdbus with path = DBUS.PATH_LOCAL
6285
+ # when connection is closed; cannot be explicitly sent by
6286
+ # clients. Documented here:
6287
+ # <https://lists.freedesktop.org/archives/dbus/2018-October/017587.html>
6288
+ ],
6289
+ ),
6290
DBUS.INTERFACE_DBUS :
6291
Introspection.Interface
6292
(
0 commit comments