From: Robert Bradshaw Date: Mon, 10 Dec 2007 20:23:52 +0000 (-0800) Subject: Due to occasional issues with cleanup on exit, cleanup now disabled by default. X-Git-Tag: 0.9.6.14~29^2~88 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ca96f2e8ca23e7fca9c309135c556cc6d3b4700c;p=cython.git Due to occasional issues with cleanup on exit, cleanup now disabled by default. --- 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