diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2021-08-12 11:15:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 11:15:06 (GMT) |
commit | 8ac0886091c27bf4b6bb0a9b571e174b554d31a4 (patch) | |
tree | 9e9f3710581381eaa65a4e89eadfbb493228fffc /Python/ceval.c | |
parent | a530a9538f3f444bebd2d2b71fe5f2e747e76d73 (diff) | |
download | cpython-8ac0886091c27bf4b6bb0a9b571e174b554d31a4.zip cpython-8ac0886091c27bf4b6bb0a9b571e174b554d31a4.tar.gz cpython-8ac0886091c27bf4b6bb0a9b571e174b554d31a4.tar.bz2 |
bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index f494e84..111689f 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -341,7 +341,7 @@ PyEval_InitThreads(void) void _PyEval_Fini(void) { -#if SPECIALIZATION_STATS +#if PRINT_SPECIALIZATION_STATS _Py_PrintSpecializationStats(); #endif } |