[pypy-svn] r14943 - pypy/dist/pypy/interpreter/pyparser

pedronis at codespeak.net pedronis at codespeak.net
Sat Jul 23 00:05:01 CEST 2005


Author: pedronis
Date: Sat Jul 23 00:05:00 2005
New Revision: 14943

Modified:
   pypy/dist/pypy/interpreter/pyparser/automata.py
Log:
make the signatures of recognized uniform



Modified: pypy/dist/pypy/interpreter/pyparser/automata.py
==============================================================================
--- pypy/dist/pypy/interpreter/pyparser/automata.py	(original)
+++ pypy/dist/pypy/interpreter/pyparser/automata.py	Sat Jul 23 00:05:00 2005
@@ -30,7 +30,7 @@
         self.start = start
 
     # ____________________________________________________________
-    def recognize (self, inVec, pos = 0, greedy = True):
+    def recognize (self, inVec, pos = 0): # greedy = True
         crntState = self.start
         i = pos
         lastAccept = False



More information about the Pypy-commit mailing list