[pypy-svn] r65881 - pypy/branch/pyjitpl5/pypy/rlib

arigo at codespeak.net arigo at codespeak.net
Tue Jun 23 13:24:55 CEST 2009


Author: arigo
Date: Tue Jun 23 13:24:54 2009
New Revision: 65881

Modified:
   pypy/branch/pyjitpl5/pypy/rlib/jit.py
Log:
Fix for pypy/module/pypyjit/test/test_jit_setup.


Modified: pypy/branch/pyjitpl5/pypy/rlib/jit.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/rlib/jit.py	(original)
+++ pypy/branch/pyjitpl5/pypy/rlib/jit.py	Tue Jun 23 13:24:54 2009
@@ -122,7 +122,7 @@
         # special-cased by ExtRegistryEntry
         # (internal, must receive a constant 'name')
         assert name in PARAMETERS
-        getattr(self.state, 'set_param_' + name)(value)
+        #getattr(self.state, 'set_param_' + name)(value)   -- ignored
 
     def set_param(self, name, value):
         """Set one of the tunable JIT parameter."""



More information about the Pypy-commit mailing list