From: Robert Bradshaw Date: Sat, 31 Jul 2010 18:47:06 +0000 (-0700) Subject: Another necessary "optimization." X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f354f9401a0b8a25d6d0eb8d01386d698405105f;p=cython.git Another necessary "optimization." --- 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),