Fix typo in get_stack_trace docstring (#134246)

This commit is contained in:
László Kiss Kollár 2025-05-19 12:07:39 -04:00 committed by GitHub
parent a36ce264a9
commit c4ad92e155
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1765,7 +1765,7 @@ result_err:
static PyMethodDef methods[] = { static PyMethodDef methods[] = {
{"get_stack_trace", get_stack_trace, METH_VARARGS, {"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_async_stack_trace", get_async_stack_trace, METH_VARARGS,
"Get the asyncio stack from a given pid"}, "Get the asyncio stack from a given pid"},
{"get_all_awaited_by", get_all_awaited_by, METH_VARARGS, {"get_all_awaited_by", get_all_awaited_by, METH_VARARGS,