From f354f9401a0b8a25d6d0eb8d01386d698405105f Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Sat, 31 Jul 2010 11:47:06 -0700 Subject: [PATCH] Another necessary "optimization." --- Cython/Compiler/Main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py index 26c71c07..51d9e074 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), @@ -148,7 +148,7 @@ class Context(object): EarlyReplaceBuiltinCalls(self), ## Necessary? MarkAssignments(self), MarkOverflowingArithmetic(self), -# TransformBuiltinMethods(self), + TransformBuiltinMethods(self), IntroduceBufferAuxiliaryVars(self), _check_c_declarations, AnalyseExpressionsTransform(self), -- 2.26.2