From 2bc54ca5adfe6905c31a1157e05721720e3ab817 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith [Google LLC]" Date: Thu, 26 Sep 2024 06:23:39 +0000 Subject: [PATCH] deprecated in 3.14 --- Include/pythread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pythread.h b/Include/pythread.h index 2ed28750914971..b3d3b665688aa4 100644 --- a/Include/pythread.h +++ b/Include/pythread.h @@ -35,7 +35,7 @@ PyAPI_FUNC(unsigned long) PyThread_start_new_thread(void (*)(void *), void *); * In either case there is a risk of invalid references remaining to data on the * thread stack. */ -Py_DEPRECATED(3.12) PyAPI_FUNC(void) _Py_NO_RETURN PyThread_exit_thread(void); +Py_DEPRECATED(3.14) PyAPI_FUNC(void) _Py_NO_RETURN PyThread_exit_thread(void); PyAPI_FUNC(unsigned long) PyThread_get_thread_ident(void);