[pypy-svn] r63976 - pypy/branch/pyjitpl5-simplify/pypy/jit/tl

arigo at codespeak.net arigo at codespeak.net
Sat Apr 11 12:16:57 CEST 2009


Author: arigo
Date: Sat Apr 11 12:16:57 2009
New Revision: 63976

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/tl/targetpypyjit.py
Log:
Disable weakrefs from the target for now.


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/tl/targetpypyjit.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/tl/targetpypyjit.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/tl/targetpypyjit.py	Sat Apr 11 12:16:57 2009
@@ -30,6 +30,7 @@
     return parser
 
 def handle_config(config, translateconfig):
+    config.translation.rweakref = False     # XXX
     # set up the objspace optimizations based on the --opt argument
     from pypy.config.pypyoption import set_pypy_opt_level
     set_pypy_opt_level(config, translateconfig.opt)



More information about the Pypy-commit mailing list