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