[pypy-svn] r27121 - pypy/dist/pypy/translator/backendopt

mwh at codespeak.net mwh at codespeak.net
Fri May 12 12:10:29 CEST 2006


Author: mwh
Date: Fri May 12 12:10:28 2006
New Revision: 27121

Modified:
   pypy/dist/pypy/translator/backendopt/graphanalyze.py
Log:
fix docstring.


Modified: pypy/dist/pypy/translator/backendopt/graphanalyze.py
==============================================================================
--- pypy/dist/pypy/translator/backendopt/graphanalyze.py	(original)
+++ pypy/dist/pypy/translator/backendopt/graphanalyze.py	Fri May 12 12:10:28 2006
@@ -4,7 +4,7 @@
 
 class GraphAnalyzer(object):
     """generic way to analyze graphs: recursively follow it until the first
-    operation is found on which self.bad_op returns True"""
+    operation is found on which self.operation_is_true returns True"""
     def __init__(self, translator):
         self.translator = translator
         self.analyzed_calls = {}



More information about the Pypy-commit mailing list