From ca96f2e8ca23e7fca9c309135c556cc6d3b4700c Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Mon, 10 Dec 2007 12:23:52 -0800 Subject: [PATCH] Due to occasional issues with cleanup on exit, cleanup now disabled by default. --- Cython/Compiler/Options.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cython/Compiler/Options.py b/Cython/Compiler/Options.py index 533b87db..7fe1c153 100644 --- a/Cython/Compiler/Options.py +++ b/Cython/Compiler/Options.py @@ -19,6 +19,8 @@ incref_local_binop = 0 # Decref global variables in this module on exit for garbage collection. # 0: None, 1+: interned objects, 2+: cdef globals, 3+: types objects -generate_cleanup_code = 1 +# Mostly for reducing noise for Valgrind, only executes at process exit +# (when all memory will be reclaimed anyways). +generate_cleanup_code = 0 -annotate = 0 \ No newline at end of file +annotate = 0 -- 2.26.2