Skip to content

Commit c26de8f

Browse files
committed
Whitespace
1 parent cb433c1 commit c26de8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Modules/_remote_debugging_module.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2510,9 +2510,9 @@ process_frame_chain(
25102510
PyErr_SetString(PyExc_RuntimeError, e);
25112511
return -1;
25122512
}
2513-
if (unwinder->native &&
2513+
if (unwinder->native &&
25142514
// The last frame is always native, so skip that one:
2515-
next_frame_addr &&
2515+
next_frame_addr &&
25162516
// If the next frame will be reported as a GC frame, then don't
25172517
// add an extra native frame below it:
25182518
!(unwinder->gc && next_frame_addr == gc_frame))
@@ -3030,7 +3030,7 @@ _remote_debugging_RemoteUnwinder_get_stack_trace_impl(RemoteUnwinderObject *self
30303030
Py_CLEAR(result);
30313031
goto exit;
30323032
}
3033-
3033+
30343034
uintptr_t gc_frame = 0;
30353035
if (self->gc) {
30363036
gc_frame = GET_MEMBER(uintptr_t, interp_state_buffer,

0 commit comments

Comments
 (0)