From: Robert Bradshaw Date: Tue, 3 Aug 2010 01:46:04 +0000 (-0700) Subject: Permute optimizations. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4bfb74b8139cff14a12dfe1bc2fab314eb9318ac;p=cython.git Permute optimizations. --- diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py index 97dbe5e3..be161a2c 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), @@ -155,8 +155,8 @@ class Context(object): OptimizeBuiltinCalls(self), ## Necessary? IterationTransform(), SwitchTransform(), - DropRefcountingTransform(), -# FinalOptimizePhase(self), +# DropRefcountingTransform(), + FinalOptimizePhase(self), GilCheck(), #ClearResultCodes(self), #SpecialFunctions(self),