diff options
| author | John (J5) Palmieri <johnp@redhat.com> | 2004-12-30 14:19:54 +0000 | 
|---|---|---|
| committer | John (J5) Palmieri <johnp@redhat.com> | 2004-12-30 14:19:54 +0000 | 
| commit | 63586e48f4b1c214385428d17fb2e40e04b99f5c (patch) | |
| tree | 8d785f74330961593305f600fad3781d347b71ee | |
| parent | eb4b165e30e59642e62b15d281cca3e6b7c75add (diff) | |
2004-12-30  John (J5) Palmieri  <johnp@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.
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | python/dbus_bindings.pyx.in | 5 | 
2 files changed, 10 insertions, 2 deletions
| @@ -1,3 +1,10 @@ +2004-12-30  John (J5) Palmieri  <johnp@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. +  2004-12-26  John (J5) Palmieri  <johnp@redhat.com>  	* python/dbus_bindings.pyx.in (bus_activate_service): Bind diff --git a/python/dbus_bindings.pyx.in b/python/dbus_bindings.pyx.in index db391e1d..d6ec96f4 100644 --- a/python/dbus_bindings.pyx.in +++ b/python/dbus_bindings.pyx.in @@ -1145,8 +1145,9 @@ def bus_get_unix_user(Connection connection, service_name):          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 | 
