From 3bcfd003b64d8eba41375f98fc1c12c6d153aa14 Mon Sep 17 00:00:00 2001 From: Robert McQueen Date: Sun, 27 Nov 2005 17:44:19 +0000 Subject: 2005-11-27 Robert McQueen * python/dbus_bindings.pyx: Repair my previous commit which reverted part of the preceding one. Oops. Merge patch by Johan Hedberg to fix marshalling of 16-bit integer values on big-endian platforms. * test/python/test-client.py: Add some 16-bit integers to the test values. --- test/python/test-client.py | 1 + 1 file changed, 1 insertion(+) (limited to 'test') diff --git a/test/python/test-client.py b/test/python/test-client.py index 23000400..f6ef12ba 100755 --- a/test/python/test-client.py +++ b/test/python/test-client.py @@ -31,6 +31,7 @@ test_types_vals = [1, 12323231, 3.14159265, 99999999.99, {1:"a", 2:"b"}, {"a":1, "b":2}, #{"a":(1,"B")}, {1:1.1, 2:2.2}, [[1,2,3],[2,3,4]], [["a","b"],["c","d"]], True, False, + dbus.Int16(-10), dbus.UInt16(10), #([1,2,3],"c", 1.2, ["a","b","c"], {"a": (1,"v"), "b": (2,"d")}) ] -- cgit