diff options
Diffstat (limited to 'lib/Param/Int/__init__.py')
| -rw-r--r-- | lib/Param/Int/__init__.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/Param/Int/__init__.py b/lib/Param/Int/__init__.py new file mode 100644 index 0000000..0a73cc1 --- /dev/null +++ b/lib/Param/Int/__init__.py @@ -0,0 +1,18 @@ +from Param import Param + +class ParamInt(Param): + def __init__(self, value, classname=""): + super(ParamInt, self).__init__(classname=classname) + try: + if value: + self.value = int(value) + else: + self.value = 0 + except Exception as e: + self.err_warn("Not an int: %s" % str(value)) + self.err_warn(str(e)) + def __int__(self): + return int(self.value) + + def __float__(self): + return float(self.value) |
