From e31e35d34e9db28d36481c9921b3ffdcc65d750d Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 22 Mar 2016 18:48:50 +0100 Subject: [PATCH] Issue #26588: one more assertion --- Modules/_tracemalloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 5c9f69e5d6..288942a904 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -992,6 +992,7 @@ DEBUG("tracemalloc_init(): set_reentrant(1)"); tracemalloc_config.initialized = TRACEMALLOC_INITIALIZED; DEBUG("tracemalloc_init(): done"); +assert(get_reentrant()); return 0; } -- 2.49.0