summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2008-05-03 12:38:20 +0200
committerEdward Hervey <bilboed@bilboed.com>2008-05-03 12:38:20 +0200
commit68b7a54effa6151c885b46cd3ab9cafce3dfff01 (patch)
tree6ec1f18ab10c73f80100a47321cb55dd8ec88d29 /TODO
parent1b7849c5eb92c05c9ad931ea03f1f0bafe02167a (diff)
dbus-python has poor type detection for integers, add a hack and TODO not
Diffstat (limited to 'TODO')
-rw-r--r--TODO12
1 files changed, 12 insertions, 0 deletions
diff --git a/TODO b/TODO
index 52e3de3..e7e3141 100644
--- a/TODO
+++ b/TODO
@@ -77,3 +77,15 @@ Non-milestone-specific / Bonus features
* DBUS
* Fix issue in a 'asv' when one of the values is a list, we currently avoid this
by removing all values of type 'list'
+
+
+DBUS ISSUES
+-----------
+
+* the type detection is extremely dumb for integers.
+ Ex : python integers have a maximum range of 2**63-1 on 64bit
+ -> this will be considered by dbus-python as an int
+ -> dbus-python will convert that to an Int32
+ -> BOOM
+ We currently solve this by pre-processing some values to make sure
+ they have the correct type. \ No newline at end of file