bpo-33312: update Tools/gdb/libpython.py to match. (GH-6549)

(cherry picked from commit 53f67d401d)
This commit is contained in:
Miss Islington (bot) 2018-04-20 13:02:30 -07:00 committed by Gregory P. Smith
parent 392520bd78
commit 11659d00b9
1 changed files with 1 additions and 1 deletions

View File

@ -730,7 +730,7 @@ class PyDictObjectPtr(PyObjectPtr):
else:
offset = 8 * dk_size
ent_addr = keys['dk_indices']['as_1'].address
ent_addr = keys['dk_indices'].address
ent_addr = ent_addr.cast(_type_unsigned_char_ptr()) + offset
ent_ptr_t = gdb.lookup_type('PyDictKeyEntry').pointer()
ent_addr = ent_addr.cast(ent_ptr_t)