dbus/python _dbus.py,1.7,1.7.4.1 service.py,1.3,1.3.4.1
John Palmieri
johnp at freedesktop.org
Mon Jul 18 05:36:26 EST 2005
Update of /cvs/dbus/dbus/python
In directory gabe:/tmp/cvs-serv2187/python
Modified Files:
Tag: DBUS_0_35_2
_dbus.py service.py
Log Message:
* NEWS: Updated to 0.35.2
* python/_dbus.py: Remove import of the dbus.services
module as it no longer exists (patch from Dimitur Kirov)
* python/service.py (Object::__init__): Fixed typo
s/name/bus_name (patch from Dimitur Kirov)
* python/examples/example-signal-emitter.py: import dbus.glib
to get the main loop and use glib mainloop instead of gtk so
X doesn't have to be running.
* python/examples/example-signal-recipient.py: import dbus.glib
to get the main loop and use glib mainloop instead of gtk so
X doesn't have to be running. Import the decorators module
directly.
* test/glib/Makefile.am: Added DIST_EXTRA files that distcheck
didn't pick up on but are needed to build
* configure.in: upped version to 0.35.2
* bus/driver.c, bus/selinux.c, bus/selinux.h, dbus/dbus-protocol.h:
added Colin Walters' SELinux API rename patch from head
s/unix sercurity context/selinux security context/
Index: _dbus.py
===================================================================
RCS file: /cvs/dbus/dbus/python/_dbus.py,v
retrieving revision 1.7
retrieving revision 1.7.4.1
diff -u -d -r1.7 -r1.7.4.1
--- _dbus.py 15 Jul 2005 02:15:08 -0000 1.7
+++ _dbus.py 17 Jul 2005 19:36:24 -0000 1.7.4.1
@@ -46,7 +46,6 @@
import dbus
from proxies import *
from exceptions import *
-from services import *
from matchrules import *
import re
Index: service.py
===================================================================
RCS file: /cvs/dbus/dbus/python/service.py,v
retrieving revision 1.3
retrieving revision 1.3.4.1
diff -u -d -r1.3 -r1.3.4.1
--- service.py 15 Jul 2005 15:21:43 -0000 1.3
+++ service.py 17 Jul 2005 19:36:24 -0000 1.3.4.1
@@ -154,7 +154,7 @@
def __init__(self, bus_name, object_path):
self._object_path = object_path
self._name = bus_name
- self._bus = name.get_bus()
+ self._bus = bus_name.get_bus()
self._connection = self._bus.get_connection()
More information about the dbus-commit
mailing list