summaryrefslogtreecommitdiff
path: root/python/m5/config.py
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2005-03-18 13:34:28 -0500
committerSteve Reinhardt <stever@eecs.umich.edu>2005-03-18 13:34:28 -0500
commitc929ee2c1001b25b2c12ca0256b73ea429ac6052 (patch)
tree83b0058bcaedf01d3cbaf2be6210a4a617fd8f83 /python/m5/config.py
parent8b9e38c303a50b773a0b4d6d4e04ebba53ce0d72 (diff)
downloadgem5-c929ee2c1001b25b2c12ca0256b73ea429ac6052.tar.xz
Byproducts of aborted attempt to refine 'parent' proxy semantics.
Mostly cleanup of mpy_importer.mpy_parse(). python/m5/__init__.py: Move panic() up to top in case we want to use it in mpy_importer (though I ended up not doing that after all). python/m5/config.py: Add a couple of comments and a check for expressions like parent.any.foo (which is illegal). --HG-- extra : convert_revision : dfc99ac9b1a2d91a736ca0b773b6d3c528a4f3cc
Diffstat (limited to 'python/m5/config.py')
-rw-r--r--python/m5/config.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/m5/config.py b/python/m5/config.py
index 712b0cfd1..6c21dce93 100644
--- a/python/m5/config.py
+++ b/python/m5/config.py
@@ -151,8 +151,11 @@ class Proxy(object):
self._multiplier = None
def __getattr__(self, attr):
+ # python uses __bases__ internally for inheritance
if attr == '__bases__':
return super(Proxy, self).__getattr__(self, attr)
+ if (self._path == None):
+ panic("Can't add attributes to 'any' proxy")
self._path.append((attr,None))
return self
@@ -347,7 +350,7 @@ class MetaConfigNode(type):
elif isNullPointer(val):
cls._values[key] = val
- # process param types from _init_dict, as these may be needed
+ # process param types from _init_dict first, as these may be needed
# by param descriptions also in _init_dict
for key,val in cls._init_dict.items():
if isinstance(val, type) and issubclass(val, ParamType):