diff options
author | Nathan Binkert <nate@binkert.org> | 2010-07-21 15:53:53 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2010-07-21 15:53:53 -0700 |
commit | 76c92c3e308c13b031dfa739d51f9f1f6917bd4b (patch) | |
tree | 0cfa6257c03cf9ba2ebca1479a6e4c66ce650b59 /src/python/SConscript | |
parent | 35184169179ad873b96bc99e5c9bdc4d3dd5ead6 (diff) | |
download | gem5-76c92c3e308c13b031dfa739d51f9f1f6917bd4b.tar.xz |
python: add a sorted dictionary class
It would be nice if python had a tree class that would do this for real,
but since we don't, we'll just keep a sorted list of keys and update
it on demand.
Diffstat (limited to 'src/python/SConscript')
-rw-r--r-- | src/python/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/python/SConscript b/src/python/SConscript index 935986a12..24a4e4d8a 100644 --- a/src/python/SConscript +++ b/src/python/SConscript @@ -58,6 +58,7 @@ 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') SwigSource('m5.internal', 'swig/core.i') SwigSource('m5.internal', 'swig/debug.i') |