From: Robert Bradshaw Date: Sat, 31 Jul 2010 20:40:32 +0000 (-0700) Subject: Enable FlattenInListTransform, IterationTransform. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=290e89537d1535d74cde8d2aafd682ff5a3f9d1a;p=cython.git Enable FlattenInListTransform, IterationTransform. --- diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py index a25ec58f..539cada3 100644 --- a/Cython/Compiler/Main.py +++ b/Cython/Compiler/Main.py @@ -138,7 +138,7 @@ class Context(object): _align_function_definitions, MarkClosureVisitor(self), ConstantFolding(), -# FlattenInListTransform(), + FlattenInListTransform(), WithTransform(self), DecoratorTransform(self), AnalyseDeclarationsTransform(self), @@ -153,7 +153,7 @@ class Context(object): _check_c_declarations, AnalyseExpressionsTransform(self), OptimizeBuiltinCalls(self), ## Necessary? -# IterationTransform(), + IterationTransform(), SwitchTransform(), # DropRefcountingTransform(), # FinalOptimizePhase(self),