From: Dag Sverre Seljebotn Date: Mon, 4 Aug 2008 16:56:58 +0000 (+0200) Subject: Fixed commit mistake X-Git-Tag: 0.9.8.1~49^2~20 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=998c14d252f2eb151422444b527fb84e5a3c438d;p=cython.git Fixed commit mistake --- diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py index a68d2ead..79aee18a 100644 --- a/Cython/Compiler/Main.py +++ b/Cython/Compiler/Main.py @@ -79,7 +79,7 @@ class Context: from ParseTreeTransforms import WithTransform, NormalizeTree, PostParse, PxdPostParse from ParseTreeTransforms import AnalyseDeclarationsTransform, AnalyseExpressionsTransform from ParseTreeTransforms import CreateClosureClasses, MarkClosureVisitor, DecoratorTransform - from ParseTreeTransforms import ResolveOptions, SpecialFunctions + from ParseTreeTransforms import ResolveOptions from Optimize import FlattenInListTransform, SwitchTransform, OptimizeRefcounting from Buffer import IntroduceBufferAuxiliaryVars from ModuleNode import check_c_classes @@ -105,7 +105,7 @@ class Context: AnalyseExpressionsTransform(self), SwitchTransform(), OptimizeRefcounting(self), - SpecialFunctions(self), +# SpecialFunctions(self), # CreateClosureClasses(context), ]