Makefile: add. Makefile for developer convenience, currently does API documentation...
[dbus-python-phuang.git] / dbus / __init__.py
blobbb479adef4d8da7ca626eec2efeec5f40e553acd
1 """\
2 Implements the public API for a D-Bus client. See the dbus.service module
3 to implement services.
5 FIXME
6 -----
7 Which of the imported symbols constitute public API?
8 """
10 __all__ = ('Bus', 'SystemBus', 'SessionBus', 'StarterBus',
11 'Interface',
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'
21 version = (0, 70, 0)
22 __version__ = '.'.join(map(str, version))
24 from dbus._dbus import *
25 from dbus.types import *
27 _dbus_main_loop_setup_function = None