You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix frame-based memo detecting stale entries from recycled frames
CPython recycles frame objects, so id(frame) can match a stale
frame_stack entry from a previous function call. Include
frame.f_code identity in the matching key so that recycled frames
with different code objects are never confused for an ongoing call.
Fixes spurious test_fixed_dim[0-0-True] and
test_dimension_wrapped_int_pass failures seen only in CI.
0 commit comments