dbus/python dbus_bindings.pyx.in,1.17,1.18

John Palmieri johnp at freedesktop.org
Thu Dec 30 06:19:56 PST 2004


Update of /cvs/dbus/dbus/python
In directory gabe:/tmp/cvs-serv24453/python

Modified Files:
	dbus_bindings.pyx.in 
Log Message:
2004-12-30  John (J5) Palmieri  <johnp at redhat.com>

        * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
        and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
        dbus-protocol.h.  Because they are defines and not enums they are not
        autogenerated.




Index: dbus_bindings.pyx.in
===================================================================
RCS file: /cvs/dbus/dbus/python/dbus_bindings.pyx.in,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- dbus_bindings.pyx.in	27 Dec 2004 16:01:13 -0000	1.17
+++ dbus_bindings.pyx.in	30 Dec 2004 14:19:54 -0000	1.18
@@ -1145,8 +1145,9 @@
         raise DBusException, error.message
     return retval
 
-ACTIVATION_REPLY_ACTIVATED = DBUS_ACTIVATION_REPLY_ACTIVATED
-ACTIVATION_REPLY_ALREADY_ACTIVE = DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE
+#These are defines, not enums so they aren't auto generated
+ACTIVATION_REPLY_ACTIVATED = 0 
+ACTIVATION_REPLY_ALREADY_ACTIVE = 1 
     
 def bus_activate_service(Connection connection, service_name, flags=0):
     cdef DBusError error



More information about the dbus-commit mailing list