[pypy-svn] r64056 - pypy/branch/pyjitpl5-simplify/pypy/translator

arigo at codespeak.net arigo at codespeak.net
Tue Apr 14 13:51:38 CEST 2009


Author: arigo
Date: Tue Apr 14 13:51:37 2009
New Revision: 64056

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/translator/translator.py
Log:
Oups, sorry.  This is meant to be passed by name.


Modified: pypy/branch/pyjitpl5-simplify/pypy/translator/translator.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/translator/translator.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/translator/translator.py	Tue Apr 14 13:51:37 2009
@@ -154,7 +154,7 @@
         """Shows the whole call graph and the class hierarchy, based on
         the computed annotations."""
         from pypy.translator.tool.graphpage import TranslatorPage
-        TranslatorPage(self, center_graph).display()
+        TranslatorPage(self, center_graph=center_graph).display()
 
 
 



More information about the Pypy-commit mailing list