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 confusion of enum _framestate with enum _frameowner
The owner field of _PyInterpreterFrame is supposed to be a member of
enum _frameowner, but FRAME_CLEARED is a member of enum _framestate.
Add FRAME_OWNED_BY_ACCIDENT to enum _frameowner and use that instead.
(It happens to have the same numerical value, but we shouldn’t rely on
that anywhere.)
Signed-off-by: Anders Kaseorg <[email protected]>
0 commit comments