summaryrefslogtreecommitdiff
path: root/python/m5
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2005-03-13 01:21:23 -0500
committerSteve Reinhardt <stever@eecs.umich.edu>2005-03-13 01:21:23 -0500
commit82964b2705b892f5d36522f7b7c5472975a5d873 (patch)
treeb3223b04ec3d0bd27432fc87dfd2acdb1a2dfaeb /python/m5
parentd94f5bfb04a9e5e99242f960ca20a6e693e6ad56 (diff)
downloadgem5-82964b2705b892f5d36522f7b7c5472975a5d873.tar.xz
Minor Python config bug fix.
python/m5/config.py: Add 'panic' to __all__ (some of Nate's scripts use it). --HG-- extra : convert_revision : ae3e2398dffe3edd17ee0155f38bc757d3552df2
Diffstat (limited to 'python/m5')
-rw-r--r--python/m5/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/config.py b/python/m5/config.py
index 74022059f..7dfc4fb04 100644
--- a/python/m5/config.py
+++ b/python/m5/config.py
@@ -1347,7 +1347,7 @@ class SimObject(ConfigNode, ParamType):
# __all__ defines the list of symbols that get exported when
# 'from config import *' is invoked. Try to keep this reasonably
# short to avoid polluting other namespaces.
-__all__ = ['env', 'issequence',
+__all__ = ['env', 'issequence', 'panic',
'ConfigNode', 'SimObject', 'ParamContext', 'Param', 'VectorParam',
'Super', 'Enum',
'Int', 'Unsigned', 'Int8', 'UInt8', 'Int16', 'UInt16',