summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/__init__.py
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2010-09-12 15:41:34 -0700
committerNathan Binkert <nate@binkert.org>2010-09-12 15:41:34 -0700
commit2edfcbbaee87c1a28351fc0dcd81d52d0d9102a4 (patch)
tree3436d2dad1d98f200566e719add526b135ae0e08 /src/python/m5/objects/__init__.py
parentafafaf1dcbab1fac3e3ba2f87dd5138d3ec08588 (diff)
downloadgem5-2edfcbbaee87c1a28351fc0dcd81d52d0d9102a4.tar.xz
swig: make all generated files go into the m5.internal package
This is necessary because versions of swig older than 1.3.39 fail to do the right thing and try to do relative imports for everything (even with the package= option to %module). Instead of putting params in the m5.internal.params package, put params in the m5.internal package and make all param modules start with param_. Same thing for m5.internal.enums. Also, stop importing all generated params into m5.objects. They are not necessary and now with everything using relative imports we wound up with pollution of the namespace (where builtin-range got overridden). --HG-- rename : src/python/m5/internal/enums/__init__.py => src/python/m5/internal/enums.py rename : src/python/m5/internal/params/__init__.py => src/python/m5/internal/params.py
Diffstat (limited to 'src/python/m5/objects/__init__.py')
-rw-r--r--src/python/m5/objects/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/m5/objects/__init__.py b/src/python/m5/objects/__init__.py
index 252ac2b17..29402c581 100644
--- a/src/python/m5/objects/__init__.py
+++ b/src/python/m5/objects/__init__.py
@@ -26,7 +26,7 @@
#
# Authors: Nathan Binkert
-from m5.objects.params import *
+from m5.internal import params
from m5.SimObject import *
try:
@@ -35,5 +35,5 @@ except NameError:
modules = { }
for module in modules.iterkeys():
- if module.startswith('m5.objects.') and module != 'm5.objects.params':
+ if module.startswith('m5.objects.'):
exec "from %s import *" % module