Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r49857:87f2c234b924
Date: 2011-11-27 15:48 +0100
http://bitbucket.org/pypy/pypy/changeset/87f2c234b924/

Log:    Bah. Reorder these two lines as a workaround fix for running:

         translate.py --continuation -O1

diff --git a/pypy/config/translationoption.py b/pypy/config/translationoption.py
--- a/pypy/config/translationoption.py
+++ b/pypy/config/translationoption.py
@@ -69,8 +69,8 @@
                      "statistics": [("translation.gctransformer", 
"framework")],
                      "generation": [("translation.gctransformer", 
"framework")],
                      "hybrid": [("translation.gctransformer", "framework")],
-                     "boehm": [("translation.gctransformer", "boehm"),
-                               ("translation.continuation", False)],  # breaks
+                     "boehm": [("translation.continuation", False),  # breaks
+                               ("translation.gctransformer", "boehm")],
                      "markcompact": [("translation.gctransformer", 
"framework")],
                      "minimark": [("translation.gctransformer", "framework")],
                      },
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to