Fix test_threading.test_threads_join_2(): run the test into a subprocess, rather than in a subinterpreter, to avoid a race condition.
|
I'm not sure that this fix is correct. The purpose of the test is to ensure that Py_EndInterpreter() joins properly threads: commit 7b47699. |
|
Nah, this change is plain wrong. https://bugs.python.org/issue36402 is a real bug, this change only hides it. PR #13948 is the good fix. |
Fix test_threading.test_threads_join_2(): run the test into a
subprocess, rather than in a subinterpreter, to avoid a race
condition.
https://bugs.python.org/issue36402