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.
code_objects.c
1 parent 18281db commit 0ed497aCopy full SHA for 0ed497a
1 file changed
Modules/_remote_debugging/code_objects.c
@@ -432,7 +432,7 @@ parse_code_object(RemoteUnwinderObject *unwinder,
432
433
#ifdef Py_GIL_DISABLED
434
// Handle thread-local bytecode (TLBC) in free threading builds
435
- if (ctx->tlbc_index == 0 || unwinder->debug_offsets.code_object.co_tlbc == 0 || unwinder == NULL) {
+ if (ctx->tlbc_index == 0 || unwinder == NULL || unwinder->debug_offsets.code_object.co_tlbc == 0) {
436
// No TLBC or no unwinder - use main bytecode directly
437
addrq = (uint16_t *)ip - (uint16_t *)meta->addr_code_adaptive;
438
goto done_tlbc;
0 commit comments