From: Stefan Behnel Date: Fri, 19 Dec 2008 13:45:56 +0000 (+0100) Subject: disable comprehension transform to keep current leaking behaviour of comprehension... X-Git-Tag: 0.11-beta~105 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=85164e8eaa9b200076f5ee47ce294b4d314e47ab;p=cython.git disable comprehension transform to keep current leaking behaviour of comprehension run variables --- diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py index fa1b33cb..ebdad275 100644 --- a/Cython/Compiler/Main.py +++ b/Cython/Compiler/Main.py @@ -125,7 +125,7 @@ class Context: AnalyseExpressionsTransform(self), FlattenBuiltinTypeCreation(), ConstantFolding(), - ComprehensionTransform(), +# ComprehensionTransform(), IterationTransform(), SwitchTransform(), FinalOptimizePhase(self),