From: Steve Reinhardt Date: Sun, 13 Mar 2005 06:21:23 +0000 (-0500) Subject: Minor Python config bug fix. X-Git-Tag: m5_1.0_tutorial~75^2^2~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=82964b2705b892f5d36522f7b7c5472975a5d873;p=gem5.git 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 --- 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',