[pypy-svn] r15602 - pypy/dist/pypy/translator

arigo at codespeak.net arigo at codespeak.net
Thu Aug 4 11:52:40 CEST 2005


Author: arigo
Date: Thu Aug  4 11:52:40 2005
New Revision: 15602

Modified:
   pypy/dist/pypy/translator/translator.py
Log:
This function doesn't do anything with its arguments, so better remove them.

Modified: pypy/dist/pypy/translator/translator.py
==============================================================================
--- pypy/dist/pypy/translator/translator.py	(original)
+++ pypy/dist/pypy/translator/translator.py	Thu Aug  4 11:52:40 2005
@@ -100,7 +100,7 @@
             dest = make_dot(graph.name, graph)
         os.system('gv %s' % str(dest))
 
-    def view(self, *functions):
+    def view(self):
         """Shows the control flow graph with annotations if computed.
         Requires 'dot' and pygame."""
         from pypy.translator.tool.graphpage import FlowGraphPage



More information about the Pypy-commit mailing list