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

elmom at codespeak.net elmom at codespeak.net
Sun Oct 21 00:11:34 CEST 2007


Author: elmom
Date: Sun Oct 21 00:11:33 2007
New Revision: 47661

Modified:
   pypy/dist/pypy/config/pypyoption.py
Log:
Forgot this one, should fix the failed tests in test_listmultiobject

Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py	(original)
+++ pypy/dist/pypy/config/pypyoption.py	Sun Oct 21 00:11:33 2007
@@ -229,6 +229,10 @@
                    "only overallocate O(sqrt(n)) elements for lists",
                    default=False,
                    requires=[("objspace.std.withmultilist", True)]),
+        BoolOption("withblist",
+                   "good asymptotic performance for very large lists",
+                   default=False,
+                   requires=[("objspace.std.withmultilist", True)]),
         BoolOption("optimized_int_add",
                    "special case the addition of two integers in BINARY_ADD",
                    default=False),



More information about the Pypy-commit mailing list