]> git.ipfire.org Git - people/stevee/ipfire-3.x.git/blob - python/patches/00125-less-verbose-COUNT_ALLOCS.patch
nasm: Update to 2.14.02
[people/stevee/ipfire-3.x.git] / python / patches / 00125-less-verbose-COUNT_ALLOCS.patch
1 diff -up Python-2.7/Python/pythonrun.c.less-verbose-COUNT_ALLOCS Python-2.7/Python/pythonrun.c
2 --- Python-2.7/Python/pythonrun.c.less-verbose-COUNT_ALLOCS 2010-08-17 14:49:33.321913909 -0400
3 +++ Python-2.7/Python/pythonrun.c 2010-08-17 14:54:48.750910403 -0400
4 @@ -470,7 +470,15 @@ Py_Finalize(void)
5
6 /* Debugging stuff */
7 #ifdef COUNT_ALLOCS
8 - dump_counts(stdout);
9 + /* This is a downstream Fedora modification.
10 + The upstream default with COUNT_ALLOCS is to always dump the counts to
11 + stdout on exit. For our debug builds its useful to have the info from
12 + COUNT_ALLOCS available, but the stdout info here gets in the way, so
13 + we make it optional, wrapping it in an environment variable (modelled
14 + on the other PYTHONDUMP* env variables):
15 + */
16 + if (Py_GETENV("PYTHONDUMPCOUNTS"))
17 + dump_counts(stdout);
18 #endif
19
20 PRINT_TOTAL_REFS();