[pypy-svn] r40163 - pypy/dist/pypy/config

arigo at codespeak.net arigo at codespeak.net
Sat Mar 10 15:27:05 CET 2007


Author: arigo
Date: Sat Mar 10 15:27:04 2007
New Revision: 40163

Modified:
   pypy/dist/pypy/config/pypyoption.py
Log:
'withmethodcache' does not need 'withshadowtracking' any more,
nor even multidicts, but only the version_tag on types.

WARNING benchmarkers, future translations with the method cache won't
include shadow tracking and multidicts by default now!


Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py	(original)
+++ pypy/dist/pypy/config/pypyoption.py	Sat Mar 10 15:27:04 2007
@@ -189,7 +189,7 @@
         BoolOption("withmethodcache",
                    "try to cache method lookups",
                    default=False,
-                   requires=[("objspace.std.withshadowtracking", True)]),
+                   requires=[("objspace.std.withtypeversion", True)]),
         BoolOption("withmethodcachecounter",
                    "try to cache methods and provide a counter in pypymagic. "
                    "for testing purposes only.",



More information about the Pypy-commit mailing list