From: László Kiss Kollár Date: Mon, 19 May 2025 16:07:39 +0000 (-0400) Subject: Fix typo in get_stack_trace docstring (#134246) X-Git-Tag: v3.15.0a1~1659 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c4ad92e1555404b54490d1e370788509120675ed;p=thirdparty%2FPython%2Fcpython.git Fix typo in get_stack_trace docstring (#134246) --- diff --git a/Modules/_remote_debugging_module.c b/Modules/_remote_debugging_module.c index 9314ddd9bed5..42db93bb5ead 100644 --- a/Modules/_remote_debugging_module.c +++ b/Modules/_remote_debugging_module.c @@ -1765,7 +1765,7 @@ result_err: 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,