Skip to content
Closed
Prev Previous commit
Next Next commit
Merge branch 'main' into fix-issue-42969
  • Loading branch information
gpshead authored May 25, 2023
commit 334777e120b878811c954f72e68d1e16ecc5a2f1
8 changes: 8 additions & 0 deletions Misc/stable_abi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2397,6 +2397,14 @@
added = '3.12' # Before 3.12, available in "structmember.h" w/o Py_ prefix
[const.Py_AUDIT_READ]
added = '3.12' # Before 3.12, available in "structmember.h"
[function.PyObject_GetTypeData]
added = '3.12'
[function.PyType_GetTypeDataSize]
added = '3.12'
[const.Py_RELATIVE_OFFSET]
added = '3.12'
[const.Py_TPFLAGS_ITEMS_AT_END]
added = '3.12'
[function.PyGILState_ReleaseGILAndFinalizeBlock]
added = '3.12'
[function.PyGILState_TryAcquireFinalizeBlockAndGIL]
Expand Down
2 changes: 1 addition & 1 deletion Python/ceval_gil.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ take_gil(PyThreadState *tstate)
in take_gil() while the main thread called
wait_for_thread_shutdown() from Py_Finalize(). */
MUTEX_UNLOCK(gil->mutex);
drop_gil(ceval, ceval2, tstate);
drop_gil(ceval, tstate);
_PyThread_hang_thread();
}
assert(is_tstate_valid(tstate));
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.