diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2005-03-19 08:47:19 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2005-03-19 08:47:19 -0500 |
commit | fc04f8015f24e800061b14767d6829a30dd5c9a5 (patch) | |
tree | 77f1300b8336641eebb87f801626f30c6ca3ee84 /python/m5/__init__.py | |
parent | 634b38fc41307ba273351878f6582bdfd00173c9 (diff) | |
parent | c929ee2c1001b25b2c12ca0256b73ea429ac6052 (diff) | |
download | gem5-fc04f8015f24e800061b14767d6829a30dd5c9a5.tar.xz |
Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/m5
into zizzer.eecs.umich.edu:/z/stever/bk/m5-head
--HG--
extra : convert_revision : a1cca61433e2cc9fd99d1a2361d32ea5c91b09c7
Diffstat (limited to 'python/m5/__init__.py')
-rw-r--r-- | python/m5/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/m5/__init__.py b/python/m5/__init__.py index 16f48dba3..27bd91749 100644 --- a/python/m5/__init__.py +++ b/python/m5/__init__.py @@ -1,14 +1,14 @@ import sys, os -# the mpy import code is added to the global import meta_path as a -# side effect of this import -from mpy_importer import AddToPath, LoadMpyFile - # define this here so we can use it right away if necessary def panic(string): print >>sys.stderr, 'panic:', string sys.exit(1) +# the mpy import code is added to the global import meta_path as a +# side effect of this import +from mpy_importer import AddToPath, LoadMpyFile + # find the m5 compile options: must be specified as a dict in # __main__.m5_build_env. import __main__ |