From 42c09088624e6ce4533bb72be2af1223754999fc Mon Sep 17 00:00:00 2001 From: Tian Gao Date: Tue, 8 Apr 2025 09:19:16 -0700 Subject: [PATCH] gh-106670: Fix a typo in doc of pdb's exceptions command (GH-132277) (cherry picked from commit efd8aca62c214dde6115822a659403fb05340680) Co-authored-by: Tian Gao --- Doc/library/pdb.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 15a9d7eec1b75b..b9016c132750ba 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -695,7 +695,7 @@ can be overridden by the local file. When using ``pdb.pm()`` or ``Pdb.post_mortem(...)`` with a chained exception instead of a traceback, it allows the user to move between the chained exceptions using ``exceptions`` command to list exceptions, and - ``exception `` to switch to that exception. + ``exceptions `` to switch to that exception. Example::