diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-02-12 09:57:15 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-02-12 16:44:21 +0000 |
commit | bc42d2fa8bc7fc2bd610011993ac168e8f5f41d3 (patch) | |
tree | 27fb9d9889a55c2fe43dd27610fa353bd4eea238 /src/python/SConscript | |
parent | 31dff7faa0a0be22e70376a49748cf4b8f1eb5f9 (diff) | |
download | gem5-bc42d2fa8bc7fc2bd610011993ac168e8f5f41d3.tar.xz |
python: Replace orderdict with collections.OrderedDict
Python 2.7 and newer has support for ordered dictionaries in the
standard library. Remove this custom class.
Change-Id: I4b720405aa3c4ce8d5c0b401eefe744a85ac3a3e
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/16362
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/python/SConscript')
-rw-r--r-- | src/python/SConscript | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/python/SConscript b/src/python/SConscript index 19fb38608..36e0d5bfc 100644 --- a/src/python/SConscript +++ b/src/python/SConscript @@ -55,7 +55,6 @@ PySource('m5.util', 'm5/util/dot_writer.py') PySource('m5.util', 'm5/util/grammar.py') PySource('m5.util', 'm5/util/jobfile.py') PySource('m5.util', 'm5/util/multidict.py') -PySource('m5.util', 'm5/util/orderdict.py') PySource('m5.util', 'm5/util/smartdict.py') PySource('m5.util', 'm5/util/sorteddict.py') PySource('m5.util', 'm5/util/terminal.py') |