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

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Dec 6 16:33:18 CET 2006


Author: cfbolz
Date: Wed Dec  6 16:33:17 2006
New Revision: 35401

Modified:
   pypy/dist/pypy/config/translationoption.py
Log:
make refcounting the default gc (which is true for py.test only, translate.py
overrides this default to be the boehm gc).


Modified: pypy/dist/pypy/config/translationoption.py
==============================================================================
--- pypy/dist/pypy/config/translationoption.py	(original)
+++ pypy/dist/pypy/config/translationoption.py	Wed Dec  6 16:33:17 2006
@@ -26,7 +26,7 @@
     ChoiceOption("gc", "Garbage Collection Strategy",
                  ["boehm", "ref", "framework", "none", "stacklessgc",
                   "exact_boehm"],
-                  "boehm", requires={
+                  "ref", requires={
                      "stacklessgc": [("translation.stackless", True)]},
                   cmdline="--gc"),
     BoolOption("thread", "enable use of threading primitives",



More information about the Pypy-commit mailing list