From 7bca3dd1e619cb0ae364cff0742ae858ded74df5 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 19 Jan 2026 18:59:44 +0100 Subject: [PATCH] [3.13] gh-102809: No longer mention `Misc/gdbinit` in the code (GH-143980) (#144045) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit gh-102809: No longer mention `Misc/gdbinit` in the code (GH-143980) Fix misleading comment on `PyObject_Dump`. (cherry picked from commit f84ea1107170988742fbd350123678a5c503c1ad) Co-authored-by: Bartosz Sławecki --- Objects/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/object.c b/Objects/object.c index 0539bcbb4621..c6d5e163528c 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -691,7 +691,7 @@ _PyObject_IsFreed(PyObject *op) } -/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */ +/* For debugging convenience. */ void _PyObject_Dump(PyObject* op) { -- 2.47.3