From 4b39336b896a54ff29f55440b33bcef324a1364e Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 11 Jun 2009 16:56:32 +0200 Subject: [PATCH] fix DebugFlags --- Cython/Compiler/DebugFlags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/DebugFlags.py b/Cython/Compiler/DebugFlags.py index f7f5a0eb..d6d52189 100644 --- a/Cython/Compiler/DebugFlags.py +++ b/Cython/Compiler/DebugFlags.py @@ -10,7 +10,7 @@ debug_temp_code_comments = 0 debug_trace_code_generation = 0 # Do not replace exceptions with user-friendly error messages -debug_no_exception_intercept = 1 +debug_no_exception_intercept = 0 # Print a message each time a new stage in the pipeline is entered debug_verbose_pipeline = 0 -- 2.26.2