]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] [Docs] Fix typo in bdb: `is_skipped_line` to `is_skipped_module` (GH-141771...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 10 Dec 2025 22:46:50 +0000 (23:46 +0100)
committerGitHub <noreply@github.com>
Wed, 10 Dec 2025 22:46:50 +0000 (22:46 +0000)
[Docs] Fix typo in bdb: `is_skipped_line` to `is_skipped_module` (GH-141771)
(cherry picked from commit e5adaafc52060ece7232ee074a7133b78fe01f9e)

Co-authored-by: Guo Ci <zguoci@gmail.com>
Doc/library/bdb.rst

index 85df7914a9a01441c69e98e24f914f93fbd133e5..b377b90557c2554404f884fe04bd562509178884 100644 (file)
@@ -213,7 +213,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.