From 8340f58be0456c79716d85967560bd9a60ebf4fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20S=C5=82awecki?= Date: Mon, 19 Jan 2026 18:36:55 +0100 Subject: [PATCH] gh-102809: No longer mention `Misc/gdbinit` in the code (GH-143980) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 b88110faf921a3..b82599b9c4fd5f 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -711,7 +711,7 @@ _PyObject_IsFreed(PyObject *op) } -/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */ +/* For debugging convenience. */ void _PyObject_Dump(PyObject* op) {