From 48b86aee1e3fc74dbe87f8d7d08f61b51c321aec Mon Sep 17 00:00:00 2001 From: Matt Page Date: Fri, 15 Mar 2024 09:26:03 -0700 Subject: [PATCH] Update comment for _make_thread_handle --- Modules/_threadmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c index d2b1cfa6fdb52e..6c84b7e08e226b 100644 --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -2261,8 +2261,8 @@ thread__make_thread_handle(PyObject *module, PyObject *identobj) PyDoc_STRVAR(thread__make_thread_handle_doc, "_make_thread_handle(ident)\n\ \n\ -Internal only. Make a thread handle for threads not spawned by the threading\n\ -module."); +Internal only. Make a thread handle for threads not spawned\n\ +by the _thread or threading module."); static PyObject * thread__get_main_thread_ident(PyObject *module, PyObject *Py_UNUSED(ignored))