Another necessary "optimization."
authorRobert Bradshaw <robertwb@math.washington.edu>
Sat, 31 Jul 2010 18:47:06 +0000 (11:47 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sat, 31 Jul 2010 18:47:06 +0000 (11:47 -0700)
Cython/Compiler/Main.py

index 26c71c07b4a40c96fa6e6e69623740a28614267a..51d9e0747fd86322a7f4ad1e5ac02c5295122c3a 100644 (file)
@@ -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),