[pypy-svn] r21556 - pypy/dist/pypy/translator/goal
pedronis at codespeak.net
pedronis at codespeak.net
Fri Dec 23 16:57:29 CET 2005
Author: pedronis
Date: Fri Dec 23 16:57:26 2005
New Revision: 21556
Modified:
pypy/dist/pypy/translator/goal/translate_pypy.py
Log:
perhaps saner option name
Modified: pypy/dist/pypy/translator/goal/translate_pypy.py
==============================================================================
--- pypy/dist/pypy/translator/goal/translate_pypy.py (original)
+++ pypy/dist/pypy/translator/goal/translate_pypy.py Fri Dec 23 16:57:26 2005
@@ -50,7 +50,7 @@
'2_gc': [OPT(('--gc',), "Garbage collector", ['boehm', 'ref', 'none'])],
'3_stackless': [OPT(('--stackless',), "Stackless code generation", True)],
- '4_merge_if_blocks': [OPT(('--merge_if_blocks',), "Merge if ... elif ... chains and use a switch statement for them.", False)],
+ '4_merge_if_blocks': [OPT(('--no-if-blocks-merge',), "Do not merge if ... elif ... chains and use a switch statement for them.", False)],
},
More information about the Pypy-commit
mailing list