summaryrefslogtreecommitdiff
path: root/dbus
diff options
context:
space:
mode:
authorElvis Pfützenreuter <epx@signove.com>2010-10-14 14:53:29 -0300
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2011-05-18 10:37:15 +0100
commit13503a5c05b63f19f2d2f65c872fe70debf11700 (patch)
treec5a4eb63a177ed987b1667d30ddee62f8a50edbe /dbus
parent95dc58760290d190a9f62d13d5b3936a0249cb43 (diff)
downloaddbus-python-13503a5c05b63f19f2d2f65c872fe70debf11700.tar.gz
Added Unix Fd support to dbus-python
Diffstat (limited to 'dbus')
-rw-r--r--dbus/types.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/dbus/types.py b/dbus/types.py
index cc4a678..d638a8e 100644
--- a/dbus/types.py
+++ b/dbus/types.py
@@ -1,9 +1,10 @@
__all__ = ('ObjectPath', 'ByteArray', 'Signature', 'Byte', 'Boolean',
'Int16', 'UInt16', 'Int32', 'UInt32', 'Int64', 'UInt64',
'Double', 'String', 'Array', 'Struct', 'Dictionary',
- 'UTF8String')
+ 'UTF8String', 'UnixFd')
from _dbus_bindings import ObjectPath, ByteArray, Signature, Byte,\
Int16, UInt16, Int32, UInt32,\
Int64, UInt64, Dictionary, Array, \
- String, Boolean, Double, Struct, UTF8String
+ String, Boolean, Double, Struct, UTF8String, \
+ UnixFd