https://github.com/python/cpython/commit/c4ad92e1555404b54490d1e370788509120675ed
commit: c4ad92e1555404b54490d1e370788509120675ed
branch: main
author: László Kiss Kollár <kiss.kollar.las...@gmail.com>
committer: pablogsal <pablog...@gmail.com>
date: 2025-05-19T16:07:39Z
summary:

Fix typo in get_stack_trace docstring (#134246)

files:
M Modules/_remote_debugging_module.c

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,

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to