[pypy-svn] r25234 - pypy/dist/pypy/translator/tool

nik at codespeak.net nik at codespeak.net
Sun Apr 2 20:17:39 CEST 2006


Author: nik
Date: Sun Apr  2 20:17:38 2006
New Revision: 25234

Modified:
   pypy/dist/pypy/translator/tool/graphpage.py
Log:
fix an import not updated after the jit module refactoring.


Modified: pypy/dist/pypy/translator/tool/graphpage.py
==============================================================================
--- pypy/dist/pypy/translator/tool/graphpage.py	(original)
+++ pypy/dist/pypy/translator/tool/graphpage.py	Sun Apr  2 20:17:38 2006
@@ -153,8 +153,8 @@
                     self.annotator.binding_cause_history.get(var, []))
                 self.binding_history[var.name] = zip(history, cause_history)
                     
-        from pypy.jit import hintannotator
-        if isinstance(self.annotator, hintannotator.HintAnnotator):
+        from pypy.jit.hintannotator.annotator import HintAnnotator
+        if isinstance(self.annotator, HintAnnotator):
             return
 
         def visit(node):



More information about the Pypy-commit mailing list