reenable optimisations to prevent their tests from failing, tiny cleanup
authorStefan Behnel <scoder@users.berlios.de>
Mon, 9 Aug 2010 17:42:49 +0000 (19:42 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Mon, 9 Aug 2010 17:42:49 +0000 (19:42 +0200)
Cython/Compiler/Main.py

index 539cada38f49446afa816d2c63f89a5437dcc752..208b575cd8e1239b140953f1ae9ceefe0c1898f5 100644 (file)
@@ -155,12 +155,10 @@ class Context(object):
             OptimizeBuiltinCalls(self),  ## Necessary?
             IterationTransform(),
             SwitchTransform(),
-#            DropRefcountingTransform(),
-#            FinalOptimizePhase(self),
+            DropRefcountingTransform(),
+            FinalOptimizePhase(self),
             GilCheck(),
             #ClearResultCodes(self),
-            #SpecialFunctions(self),
-            #CreateClosureClasses(context),
             ]
 
     def create_pyx_pipeline(self, options, result, py=False):