[pypy-svn] r66525 - pypy/branch/parser-compiler/pypy/interpreter/pyparser

benjamin at codespeak.net benjamin at codespeak.net
Thu Jul 23 00:53:02 CEST 2009


Author: benjamin
Date: Thu Jul 23 00:53:01 2009
New Revision: 66525

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/pyparser/pytokenizer.py
Log:
appease flow space

Modified: pypy/branch/parser-compiler/pypy/interpreter/pyparser/pytokenizer.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/pyparser/pytokenizer.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/pyparser/pytokenizer.py	Thu Jul 23 00:53:01 2009
@@ -85,6 +85,7 @@
     line = ''
     pos = 0
     lines.append("")
+    strstart = (0, 0)
     for line in lines:
         lnum = lnum + 1
         pos, max = 0, len(line)



More information about the Pypy-commit mailing list