]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-117688: Fix deadlock in test_no_stale_references with GIL disabled (#117720)
authorSam Gross <colesbury@gmail.com>
Mon, 15 Apr 2024 16:54:56 +0000 (12:54 -0400)
committerGitHub <noreply@github.com>
Mon, 15 Apr 2024 16:54:56 +0000 (12:54 -0400)
commit520cf2170ea08730e142d591e311b7ab8a6afe63
tree7be14a1bffc20cd73b06b3b19ad85ca2246700fc
parent106e9ddc435372f3977432d76d0b1cb46ac72c5f
gh-117688: Fix deadlock in test_no_stale_references with GIL disabled (#117720)

Check `my_object_collected.wait()` in a loop to give the main thread a
chance to merge the reference count fields. Additionally, call
`my_object_collected.set()` in a background thread to avoid deadlocking
when the destructor is called asynchronously via the eval breaker
within the body of of `my_object_collected.wait()`.
Lib/test/test_concurrent_futures/executor.py