From e59a0637c0a586c05d5aaf110a8d83cb281da7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Kiss=20Koll=C3=A1r?= Date: Mon, 19 May 2025 12:07:39 -0400 Subject: [PATCH] Fix typo in get_stack_trace docstring (GH-134246) (cherry picked from commit c4ad92e1555404b54490d1e370788509120675ed) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: László Kiss Kollár --- Modules/_remote_debugging_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_remote_debugging_module.c b/Modules/_remote_debugging_module.c index 9314ddd9bed5d7..42db93bb5ead0f 100644 --- a/Modules/_remote_debugging_module.c +++ b/Modules/_remote_debugging_module.c @@ -1765,7 +1765,7 @@ get_async_stack_trace(PyObject* self, PyObject* args) static PyMethodDef methods[] = { {"get_stack_trace", get_stack_trace, METH_VARARGS, - "Get the Python stack from a given pod"}, + "Get the Python stack from a given pid"}, {"get_async_stack_trace", get_async_stack_trace, METH_VARARGS, "Get the asyncio stack from a given pid"}, {"get_all_awaited_by", get_all_awaited_by, METH_VARARGS,