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

arigo at codespeak.net arigo at codespeak.net
Thu Jul 28 23:39:30 CEST 2005


Author: arigo
Date: Thu Jul 28 23:39:27 2005
New Revision: 15305

Modified:
   pypy/dist/pypy/interpreter/pyparser/parsestring.py
Log:
Typo.


Modified: pypy/dist/pypy/interpreter/pyparser/parsestring.py
==============================================================================
--- pypy/dist/pypy/interpreter/pyparser/parsestring.py	(original)
+++ pypy/dist/pypy/interpreter/pyparser/parsestring.py	Thu Jul 28 23:39:27 2005
@@ -113,7 +113,7 @@
             # note that the C code has a label here.
             # the logic is the same.
             if recode_encoding and ord(s[ps]) & 0x80:
-                w, ps = decode_utf8(space, s, ps, q, recode_encoding)
+                w, ps = decode_utf8(space, s, ps, end, recode_encoding)
                 # Append bytes to output buffer.
                 lis.append(w)
             else:



More information about the Pypy-commit mailing list