Skip to content

Commit 53f67d4

Browse files
authored
bpo-33312: update Tools/gdb/libpython.py to match. (GH-6548)
1 parent 063db62 commit 53f67d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/gdb/libpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def _get_entries(self, keys):
730730
else:
731731
offset = 8 * dk_size
732732

733-
ent_addr = keys['dk_indices']['as_1'].address
733+
ent_addr = keys['dk_indices'].address
734734
ent_addr = ent_addr.cast(_type_unsigned_char_ptr()) + offset
735735
ent_ptr_t = gdb.lookup_type('PyDictKeyEntry').pointer()
736736
ent_addr = ent_addr.cast(ent_ptr_t)

0 commit comments

Comments
 (0)