From 8fecb9fa0b42f7dc18bd58b1bef56f967612e088 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Sat, 25 Jan 2025 11:33:26 +0100 Subject: Remove unused DPRINTF in ceval.c (GH-129282) remove unused DPRINTF in ceval.c --- Python/ceval.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Python/ceval.c b/Python/ceval.c index 171b383..1bdae33 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1063,13 +1063,6 @@ enter_tier_two: #undef ENABLE_SPECIALIZATION_FT #define ENABLE_SPECIALIZATION_FT 0 -#ifdef Py_DEBUG - #define DPRINTF(level, ...) \ - if (lltrace >= (level)) { printf(__VA_ARGS__); } -#else - #define DPRINTF(level, ...) -#endif - ; // dummy statement after a label, before a declaration uint16_t uopcode; #ifdef Py_STATS -- cgit v0.12