From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 10 Dec 2025 22:46:18 +0000 (+0100) Subject: [3.14] [Docs] Fix typo in bdb: `is_skipped_line` to `is_skipped_module` (GH-141771... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a160317b5a5f460cab55b89d741783d98e96c38d;p=thirdparty%2FPython%2Fcpython.git [3.14] [Docs] Fix typo in bdb: `is_skipped_line` to `is_skipped_module` (GH-141771) (#142547) [Docs] Fix typo in bdb: `is_skipped_line` to `is_skipped_module` (GH-141771) (cherry picked from commit e5adaafc52060ece7232ee074a7133b78fe01f9e) Co-authored-by: Guo Ci --- diff --git a/Doc/library/bdb.rst b/Doc/library/bdb.rst index 90f042aa3777..2b87f2626b2c 100644 --- a/Doc/library/bdb.rst +++ b/Doc/library/bdb.rst @@ -240,7 +240,7 @@ The :mod:`bdb` module also defines two classes: Normally derived classes don't override the following methods, but they may if they want to redefine the definition of stopping and breakpoints. - .. method:: is_skipped_line(module_name) + .. method:: is_skipped_module(module_name) Return ``True`` if *module_name* matches any skip pattern.