aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-01-13 08:42:13 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2011-04-22 16:39:24 +0200
commit82975ba48fe082ec02e69a32a3debfeadbdebe0d (patch)
tree0bec2ba384cf7a1af83f231b4312cb37352de1ed
parentd4ed14edf6de920efabca03b22508dca0d8091ca (diff)
downloadopenembedded-82975ba48fe082ec02e69a32a3debfeadbdebe0d.tar.gz
oe.types: add floating point type
Optional flags: 'fromhex': if set to a true value (obeying the same rules as for the boolean type), your string value is in base 16, not base 10 Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r--lib/oe/_types.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/oe/_types.py b/lib/oe/_types.py
index b9eb2d2b86..ea31cf4219 100644
--- a/lib/oe/_types.py
+++ b/lib/oe/_types.py
@@ -89,3 +89,16 @@ def integer(value, numberbase=10):
'numberbase' flag."""
return int(value, int(numberbase))
+
+_float = float
+def float(value, fromhex='false'):
+ """OpenEmbedded floating point type
+
+ To use this type, set the type flag to 'float', and optionally set the
+ 'fromhex' flag to a true value (obeying the same rules as for the
+ 'boolean' type) if the value is in base 16 rather than base 10."""
+
+ if boolean(fromhex):
+ return _float.fromhex(value)
+ else:
+ return _float(value)