[pypy-svn] r78239 - pypy/trunk/pypy/rlib/rsre

arigo at codespeak.net arigo at codespeak.net
Sun Oct 24 13:23:58 CEST 2010


Author: arigo
Date: Sun Oct 24 13:23:56 2010
New Revision: 78239

Modified:
   pypy/trunk/pypy/rlib/rsre/rsre_jit.py
Log:
Reactivate JITing of regexps.  It seems to give a speed-up at
least on spambayes.


Modified: pypy/trunk/pypy/rlib/rsre/rsre_jit.py
==============================================================================
--- pypy/trunk/pypy/rlib/rsre/rsre_jit.py	(original)
+++ pypy/trunk/pypy/rlib/rsre/rsre_jit.py	Sun Oct 24 13:23:56 2010
@@ -2,7 +2,7 @@
 
 
 class RSreJitDriver(JitDriver):
-    active = False        # XXX temporary?
+    active = True
 
     def __init__(self, name, debugprint, **kwds):
         JitDriver.__init__(self, **kwds)



More information about the Pypy-commit mailing list