Skip to content

Commit 8fecb9f

Browse files
authored
Remove unused DPRINTF in ceval.c (GH-129282)
remove unused DPRINTF in ceval.c
1 parent cc4f0a2 commit 8fecb9f

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Python/ceval.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,13 +1063,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10631063
#undef ENABLE_SPECIALIZATION_FT
10641064
#define ENABLE_SPECIALIZATION_FT 0
10651065

1066-
#ifdef Py_DEBUG
1067-
#define DPRINTF(level, ...) \
1068-
if (lltrace >= (level)) { printf(__VA_ARGS__); }
1069-
#else
1070-
#define DPRINTF(level, ...)
1071-
#endif
1072-
10731066
; // dummy statement after a label, before a declaration
10741067
uint16_t uopcode;
10751068
#ifdef Py_STATS

0 commit comments

Comments
 (0)