From 9b9dd4b80eb2753fc67bed1f48eef89674ba968e Mon Sep 17 00:00:00 2001 From: David Zeuthen Date: Wed, 15 Oct 2003 21:25:13 +0000 Subject: 2003-10-14 David Zeuthen * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in argtype to arg_type when raising unknown arg type exception. Changed type list to reflect the changes in dbus-protocol.h so the bindings actually work. --- ChangeLog | 7 +++++++ python/dbus_bindings.pyx.in | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e905c304..deb37489 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-10-14 David Zeuthen + + * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in + argtype to arg_type when raising unknown arg type exception. + Changed type list to reflect the changes in dbus-protocol.h so + the bindings actually work. + 2003-10-14 Havoc Pennington * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems diff --git a/python/dbus_bindings.pyx.in b/python/dbus_bindings.pyx.in index 4ae056c5..7127ece4 100644 --- a/python/dbus_bindings.pyx.in +++ b/python/dbus_bindings.pyx.in @@ -429,7 +429,7 @@ cdef class MessageIter: else: raise TypeError, "Unknown array type %d in MessageIter" % (array_type) else: - raise TypeError, 'Unknown arg type %d in MessageIter' % (argtype) + raise TypeError, 'Unknown arg type %d in MessageIter' % (arg_type) return retval @@ -569,7 +569,7 @@ cdef class MessageIter: (MESSAGE_TYPE_INVALID, MESSAGE_TYPE_METHOD_CALL, MESSAGE_TYPE_METHOD_RETURN, MESSAGE_TYPE_ERROR, MESSAGE_TYPE_SIGNAL) = range(5) -(TYPE_INVALID, TYPE_NIL, TYPE_BYTE, TYPE_BOOLEAN, TYPE_INT32, TYPE_UINT32, TYPE_INT64, TYPE_UINT64, TYPE_DOUBLE, TYPE_STRING, TYPE_NAMED, TYPE_ARRAY, TYPE_DICT, TYPE_OBJECT_PATH) = range(14) +(TYPE_INVALID, TYPE_NIL, TYPE_BYTE, TYPE_BOOLEAN, TYPE_INT32, TYPE_UINT32, TYPE_INT64, TYPE_UINT64, TYPE_DOUBLE, TYPE_STRING, TYPE_NAMED, TYPE_ARRAY, TYPE_DICT, TYPE_OBJECT_PATH) = (0, 118, 121, 98, 105, 117, 120, 116, 100, 115, 110, 97, 99, 111) cdef class Message: cdef DBusMessage *msg -- cgit