summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@celebrin.pseudorandom.co.uk>2006-11-14 14:25:04 +0000
committerSimon McVittie <smcv@celebrin.pseudorandom.co.uk>2006-11-14 14:25:04 +0000
commitbf5550fdcbd02a55d18f17d2b79e692145dfad58 (patch)
treec2b6e50a1bfd938232f349a45b9ff4c603acf602
parent0bd42c7cce423ce04def63217675b730228294af (diff)
Import the newly re-added types into dbus.types
-rw-r--r--dbus/types.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/dbus/types.py b/dbus/types.py
index 8be55d7..cc4a678 100644
--- a/dbus/types.py
+++ b/dbus/types.py
@@ -1,11 +1,9 @@
__all__ = ('ObjectPath', 'ByteArray', 'Signature', 'Byte', 'Boolean',
'Int16', 'UInt16', 'Int32', 'UInt32', 'Int64', 'UInt64',
- 'Double', 'String', 'Array', 'Struct', 'Dictionary', 'Variant')
+ 'Double', 'String', 'Array', 'Struct', 'Dictionary',
+ 'UTF8String')
from _dbus_bindings import ObjectPath, ByteArray, Signature, Byte,\
Int16, UInt16, Int32, UInt32,\
- Int64, UInt64, Variant, Dictionary, Array
-Boolean = bool
-String = unicode
-Double = float
-Struct = tuple
+ Int64, UInt64, Dictionary, Array, \
+ String, Boolean, Double, Struct, UTF8String