We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef0ff3 commit ea5518eCopy full SHA for ea5518e
1 file changed
Modules/_threadmodule.c
@@ -712,7 +712,6 @@ PyThreadHandleObject_is_done(PyObject *op, PyObject *Py_UNUSED(dummy))
712
PyThreadHandleObject *self = PyThreadHandleObject_CAST(op);
713
if (_PyEvent_IsSet(&self->handle->thread_is_exiting)) {
714
if (_PyOnceFlag_CallOnce(&self->handle->once, join_thread, self->handle) == -1) {
715
- PyErr_SetString(PyExc_RuntimeError, "failed to join thread");
716
return NULL;
717
}
718
Py_RETURN_TRUE;
0 commit comments