[pypy-svn] r67044 - pypy/branch/pyjitpl5/pypy/jit/tl

arigo at codespeak.net arigo at codespeak.net
Thu Aug 20 18:11:50 CEST 2009


Author: arigo
Date: Thu Aug 20 18:11:50 2009
New Revision: 67044

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit.py
Log:
(fijal, arigo)
Fix options.


Modified: pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit.py	Thu Aug 20 18:11:50 2009
@@ -38,12 +38,12 @@
 config.objspace.usemodules.pypyjit = True
 config.objspace.usemodules._weakref = False
 config.objspace.usemodules._sre = False
-config.translation.rweakref = False # XXX
 set_pypy_opt_level(config, level='0')
 config.objspace.std.builtinshortcut = True
 config.objspace.opcodes.CALL_LIKELY_BUILTIN = True
 config.objspace.std.withrangelist = True
 config.objspace.std.withsharingdict = True
+config.objspace.std.withmethodcache = True
 
 if BACKEND == 'c':
     config.objspace.std.multimethods = 'mrd'



More information about the Pypy-commit mailing list