diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-01-25 18:38:03 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-02-25 14:25:24 +0000 |
commit | b5b19d247024022a93df320158a2aea2a772e54f (patch) | |
tree | 7526180743cf2ec957e92108819f61a5d173cdeb /src/python/m5/util | |
parent | debb5daace15e17bae7c07937852f6f738633c85 (diff) | |
download | gem5-b5b19d247024022a93df320158a2aea2a772e54f.tar.xz |
python: Add Python 3 workarounds for long
Python 3 doesn't have a separate long type. Make long an alias for int
where needed to maintain compatibility.
Change-Id: I4c0861302bc3a2fa5226b3041803ef975d29b2fd
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/15988
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Diffstat (limited to 'src/python/m5/util')
-rw-r--r-- | src/python/m5/util/convert.py | 4 | ||||
-rw-r--r-- | src/python/m5/util/fdthelper.py | 4 | ||||
-rw-r--r-- | src/python/m5/util/smartdict.py | 3 |
3 files changed, 11 insertions, 0 deletions
diff --git a/src/python/m5/util/convert.py b/src/python/m5/util/convert.py index acd1a2448..76ac509dc 100644 --- a/src/python/m5/util/convert.py +++ b/src/python/m5/util/convert.py @@ -28,6 +28,10 @@ # Authors: Nathan Binkert # Gabe Black +import six +if six.PY3: + long = int + # metric prefixes atto = 1.0e-18 femto = 1.0e-15 diff --git a/src/python/m5/util/fdthelper.py b/src/python/m5/util/fdthelper.py index bd04b4154..c8760508c 100644 --- a/src/python/m5/util/fdthelper.py +++ b/src/python/m5/util/fdthelper.py @@ -35,6 +35,10 @@ # # Author: Glenn Bergmans +import six +if six.PY3: + long = int + from m5.ext.pyfdt import pyfdt import re import os diff --git a/src/python/m5/util/smartdict.py b/src/python/m5/util/smartdict.py index 3cfe3294e..dabc3f86b 100644 --- a/src/python/m5/util/smartdict.py +++ b/src/python/m5/util/smartdict.py @@ -43,6 +43,9 @@ from __future__ import print_function from __future__ import absolute_import +import six +if six.PY3: + long = int from .convert import * from .attrdict import attrdict |