We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 252b7bc commit 07cf10bCopy full SHA for 07cf10b
Python/ceval.c
@@ -7015,7 +7015,7 @@ maybe_dtrace_line(InterpreterFrame *frame,
7015
if (line != -1) {
7016
/* Trace backward edges or first instruction of a new line */
7017
if (frame->f_lasti < instr_prev ||
7018
- (line != lastline && frame->f_lasti*sizeof(_Py_CODEUNIT) == trace_info->bounds.ar_start))
+ (line != lastline && frame->f_lasti*sizeof(_Py_CODEUNIT) == (unsigned int)trace_info->bounds.ar_start))
7019
{
7020
co_filename = PyUnicode_AsUTF8(frame->f_code->co_filename);
7021
if (!co_filename) {
0 commit comments