Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Use Py_TAG_BITS instead of 1
  • Loading branch information
colesbury committed Sep 11, 2024
commit 471a757378a3c203c71f6c5128b2f1d1b6173f32
2 changes: 1 addition & 1 deletion Modules/_testexternalinspection.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ parse_frame_object(
if (address_of_code_object == 0) {
return 0;
}
address_of_code_object &= ~1;
address_of_code_object &= ~Py_TAG_BITS;
return parse_code_object(pid, result, offsets, (void *)address_of_code_object, previous_frame);
}

Expand Down