[pypy-svn] r31196 - pypy/dist/pypy/interpreter

mwh at codespeak.net mwh at codespeak.net
Wed Aug 9 12:50:50 CEST 2006


Author: mwh
Date: Wed Aug  9 12:50:49 2006
New Revision: 31196

Modified:
   pypy/dist/pypy/interpreter/baseobjspace.py
Log:
fix import stupidity


Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py	Wed Aug  9 12:50:49 2006
@@ -164,8 +164,9 @@
         if w_exitfunc is not None:
             self.call_function(w_exitfunc)
         # XXX ugh:
-        from pypy.objspace.std.dictmultiobject import MEASURE_DICT, report
+        from pypy.objspace.std.dictmultiobject import MEASURE_DICT
         if MEASURE_DICT:
+            from pypy.objspace.std.dictmultiobject import report
             report()
     
     def __repr__(self):



More information about the Pypy-commit mailing list