bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068)

This commit is contained in:
Victor Stinner 2019-05-04 11:48:05 -04:00 committed by GitHub
parent 6b5b013bcc
commit c664b342a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 17 additions and 15 deletions

View file

@ -211,7 +211,6 @@ exit_thread_if_finalizing(PyThreadState *tstate)
if (_Py_IsFinalizing() && !_Py_CURRENTLY_FINALIZING(tstate)) {
drop_gil(tstate);
PyThread_exit_thread();
Py_UNREACHABLE();
}
}