From: Ali Saidi Date: Wed, 2 Nov 2005 20:37:47 +0000 (-0500) Subject: allow conversion floats -> long so that 100e9 and such work as Ticks X-Git-Tag: m5_2.0_beta1~314 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cb929af3452acbd7672fd8949bf025878b1e2450;p=gem5.git allow conversion floats -> long so that 100e9 and such work as Ticks --HG-- extra : convert_revision : 23511baca6153bb3aa9c57be8818ad1b65f02a71 --- diff --git a/python/m5/config.py b/python/m5/config.py index e1970e672..a93fdefeb 100644 --- a/python/m5/config.py +++ b/python/m5/config.py @@ -936,7 +936,7 @@ class CheckedInt(NumericParamValue): def __init__(self, value): if isinstance(value, str): self.value = toInteger(value) - elif isinstance(value, (int, long)): + elif isinstance(value, (int, long, float)): self.value = long(value) self._check()