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
{{ message }}
This repository was archived by the owner on Feb 13, 2025. It is now read-only.
Originally reported by: Anselm Kruis (Bitbucket: akruis, GitHub: akruis)
Affected versions: all
Stackless accesses the interpreter->tstate_head list of thread states. This list is protected by the head-lock in pystate.c. Currently stackless ignores this lock. This can cause undefined behaviour, especially during interpreter shutdown. However I have not seen this in the wild.
Nevertheless I would like to fix this issue, because the fix is straight forward.