We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While reviewing #130096, I checked the thread safety of list object and there at some places we are missing atomic stores of index.
Specifically the following:
cpython/Objects/listobject.c
Lines 3994 to 3997 in 97d0011
Lines 4146 to 4149 in 97d0011
They should use atomic relaxed stores.
The text was updated successfully, but these errors were encountered:
Fixed by 388e1ca
Sorry, something went wrong.
No branches or pull requests
While reviewing #130096, I checked the thread safety of list object and there at some places we are missing atomic stores of index.
Specifically the following:
cpython/Objects/listobject.c
Lines 3994 to 3997 in 97d0011
cpython/Objects/listobject.c
Lines 4146 to 4149 in 97d0011
They should use atomic relaxed stores.
Linked PRs
The text was updated successfully, but these errors were encountered: