From 2c413bf281cefde85209e5a3847735407bedaaa4 Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Wed, 13 Jul 2005 18:22:35 +0000 Subject: * python/.cvsignore: remove dbus_bindings.pyx, add dbus_bindings.pxd * python/service.py (class Name): renamed BusName to make it clearer what the object is for (a name on the bus) * python/examples/example-service.py, python/examples/example-signal-emitter.py: change the Name object to BusName --- python/service.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'python/service.py') diff --git a/python/service.py b/python/service.py index fc044af0..b7504dca 100644 --- a/python/service.py +++ b/python/service.py @@ -2,11 +2,8 @@ from decorators import * import dbus_bindings -class Name: +class BusName: """A base class for exporting your own Named Services across the Bus - - Just inherit from Name, providing the name of your service - (e.g. org.designfu.SampleService). """ def __init__(self, named_service, bus=None): self._named_service = named_service @@ -150,8 +147,7 @@ class Object: """A base class for exporting your own Objects across the Bus. Just inherit from Object and provide a list of methods to share - across the Bus. These will appear as member functions of your - ServiceObject. + across the Bus """ __metaclass__ = ObjectType -- cgit