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
This commit is contained in:
parent
d94f5bfb04
commit
82964b2705
1 changed files with 1 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue