https://github.com/python/cpython/commit/7dc745d1f5d9558047a52cad5e01df7567533269 commit: 7dc745d1f5d9558047a52cad5e01df7567533269 branch: main author: Sam Gross <[email protected]> committer: colesbury <[email protected]> date: 2024-06-01T12:15:58-04:00 summary:
gh-117657: Add TSAN suppression for `set_discard_entry` (#119908) Seen in CI occasionally when running `test_weakref`. files: M Tools/tsan/suppressions_free_threading.txt diff --git a/Tools/tsan/suppressions_free_threading.txt b/Tools/tsan/suppressions_free_threading.txt index 9a53990f8b2ff8..f855e9ce2698a5 100644 --- a/Tools/tsan/suppressions_free_threading.txt +++ b/Tools/tsan/suppressions_free_threading.txt @@ -44,6 +44,8 @@ race_top:PyMember_GetOne race_top:PyMember_SetOne race_top:new_reference race_top:set_contains_key +# https://gist.github.com/colesbury/d13d033f413b4ad07929d044bed86c35 +race_top:set_discard_entry race_top:set_inheritable race_top:start_the_world race_top:tstate_set_detached _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
