[pypy-svn] r79481 - pypy/branch/rlist-jit/pypy/rlib/rsre

arigo at codespeak.net arigo at codespeak.net
Wed Nov 24 17:45:30 CET 2010


Author: arigo
Date: Wed Nov 24 17:45:28 2010
New Revision: 79481

Modified:
   pypy/branch/rlist-jit/pypy/rlib/rsre/rsre_core.py
Log:
This hint is no longer needed now.  (Hopefully the effect we get is the same.)


Modified: pypy/branch/rlist-jit/pypy/rlib/rsre/rsre_core.py
==============================================================================
--- pypy/branch/rlist-jit/pypy/rlib/rsre/rsre_core.py	(original)
+++ pypy/branch/rlist-jit/pypy/rlib/rsre/rsre_core.py	Wed Nov 24 17:45:28 2010
@@ -1,5 +1,5 @@
 import sys
-from pypy.rlib.debug import check_nonneg, make_sure_not_modified
+from pypy.rlib.debug import check_nonneg
 from pypy.rlib.unroll import unrolling_iterable
 from pypy.rlib.rsre import rsre_char
 from pypy.tool.sourcetools import func_with_new_name
@@ -471,7 +471,6 @@
     while True:
         op = ctx.pat(ppos)
         ppos += 1
-        make_sure_not_modified(ctx.pattern)
 
         #jit.jit_debug("sre_match", op, ppos, ptr)
         #



More information about the Pypy-commit mailing list