[pypy-svn] r70751 - pypy/branch/direct-assembler-call/pypy/jit/backend/test
fijal at codespeak.net
fijal at codespeak.net
Thu Jan 21 16:17:49 CET 2010
Author: fijal
Date: Thu Jan 21 16:17:49 2010
New Revision: 70751
Modified:
pypy/branch/direct-assembler-call/pypy/jit/backend/test/support.py
Log:
turn on by default list_comprehenstion_operations. Saves some annoying warnings
Modified: pypy/branch/direct-assembler-call/pypy/jit/backend/test/support.py
==============================================================================
--- pypy/branch/direct-assembler-call/pypy/jit/backend/test/support.py (original)
+++ pypy/branch/direct-assembler-call/pypy/jit/backend/test/support.py Thu Jan 21 16:17:49 2010
@@ -120,6 +120,7 @@
def _get_TranslationContext(self):
t = TranslationContext()
t.config.translation.gc = 'boehm'
+ t.config.translation.list_comprehension_operations = True
return t
def _compile_and_run(self, t, entry_point, entry_point_graph, args):
More information about the Pypy-commit
mailing list