Skip to content
Prev Previous commit
Next Next commit
Catch up with main
  • Loading branch information
brandtbucher committed Mar 2, 2022
commit 4a6632c7b4fedf8657384ccf1664d4d745a41804
2 changes: 1 addition & 1 deletion Python/ceval.c
Original file line number Diff line number Diff line change
Expand Up @@ -1456,7 +1456,7 @@ eval_frame_handle_pending(PyThreadState *tstate)
LOAD_##attr_or_method); \
assert(dict->ma_keys->dk_kind == DICT_KEYS_UNICODE); \
assert(cache->index < dict->ma_keys->dk_nentries); \
PyDictKeyEntry *ep = DK_ENTRIES(dict->ma_keys) + cache->index; \
PyDictUnicodeEntry *ep = DK_UNICODE_ENTRIES(dict->ma_keys) + cache->index; \
res = ep->me_value; \
DEOPT_IF(res == NULL, LOAD_##attr_or_method); \
/* XXX: Remove this next line to make test_asyncio very angry! */ \
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.