From 706bc0fd0bd13969a0c9b497f154429dd36a5d02 Mon Sep 17 00:00:00 2001 From: chris-eibl <138194463+chris-eibl@users.noreply.github.com> Date: Sat, 25 Jan 2025 08:50:04 +0100 Subject: [PATCH] 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 171b383d547e35..1bdae338845758 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1063,13 +1063,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int #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