Due to occasional issues with cleanup on exit, cleanup now disabled by default.
authorRobert Bradshaw <robertwb@math.washington.edu>
Mon, 10 Dec 2007 20:23:52 +0000 (12:23 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Mon, 10 Dec 2007 20:23:52 +0000 (12:23 -0800)
Cython/Compiler/Options.py

index 533b87db1f8887c1cc10eff1010b6374fe33813a..7fe1c153f5ac793bd71069e05c2a9b6424e1d514 100644 (file)
@@ -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