2 Implements the public API for a D-Bus client. See the dbus.service module
7 Which of the imported symbols constitute public API?
10 __all__
= ('Bus', 'SystemBus', 'SessionBus', 'StarterBus',
12 'DBusException', 'ConnectionError',
13 'MissingErrorHandlerException', 'MissingReplyHandlerException',
14 'ValidationException', 'IntrospectionParserException',
15 'UnknownMethodException', 'NameExistsException',
16 'ObjectPath', 'ByteArray', 'Signature', 'Byte', 'Boolean',
17 'Int16', 'UInt16', 'Int32', 'UInt32', 'Int64', 'UInt64',
18 'Double', 'String', 'Array', 'Struct', 'Dictionary', 'Variant'
20 __docformat__
= 'restructuredtext'
22 __version__
= '.'.join(map(str, version
))
24 from dbus
._dbus
import *
25 from dbus
.types
import *
27 _dbus_main_loop_setup_function
= None