Blame SOURCES/00125-less-verbose-COUNT_ALLOCS.patch

23b3e9
diff -up Python-2.7/Python/pythonrun.c.less-verbose-COUNT_ALLOCS Python-2.7/Python/pythonrun.c
23b3e9
--- Python-2.7/Python/pythonrun.c.less-verbose-COUNT_ALLOCS	2010-08-17 14:49:33.321913909 -0400
23b3e9
+++ Python-2.7/Python/pythonrun.c	2010-08-17 14:54:48.750910403 -0400
23b3e9
@@ -470,7 +470,15 @@ Py_Finalize(void)
23b3e9
 
23b3e9
     /* Debugging stuff */
23b3e9
 #ifdef COUNT_ALLOCS
23b3e9
-    dump_counts(stdout);
23b3e9
+    /* This is a downstream Fedora modification.
23b3e9
+       The upstream default with COUNT_ALLOCS is to always dump the counts to
23b3e9
+       stdout on exit.  For our debug builds its useful to have the info from
23b3e9
+       COUNT_ALLOCS available, but the stdout info here gets in the way, so
23b3e9
+       we make it optional, wrapping it in an environment variable (modelled
23b3e9
+       on the other PYTHONDUMP* env variables):
23b3e9
+    */
23b3e9
+    if (Py_GETENV("PYTHONDUMPCOUNTS"))
23b3e9
+        dump_counts(stdout);
23b3e9
 #endif
23b3e9
 
23b3e9
     PRINT_TOTAL_REFS();