Skip to content

Commit

Permalink
Remove unused DPRINTF in ceval.c (GH-129282)
Browse files Browse the repository at this point in the history
remove unused DPRINTF in ceval.c
  • Loading branch information
chris-eibl authored Jan 25, 2025
1 parent cc4f0a2 commit 8fecb9f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Python/ceval.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8fecb9f

Please sign in to comment.