From 85164e8eaa9b200076f5ee47ce294b4d314e47ab Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 19 Dec 2008 14:45:56 +0100 Subject: [PATCH] disable comprehension transform to keep current leaking behaviour of comprehension run variables --- Cython/Compiler/Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), -- 2.26.2