]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[Docs] Fix typo in bdb: `is_skipped_line` to `is_skipped_module` (#141771)
authorGuo Ci <zguoci@gmail.com>
Thu, 20 Nov 2025 02:39:54 +0000 (21:39 -0500)
committerGitHub <noreply@github.com>
Thu, 20 Nov 2025 02:39:54 +0000 (18:39 -0800)
Doc/library/bdb.rst

index c7a3e0c596b9d03acfd839b8e66c245e732db68c..a3c6da7a6d686b5afb7db677e68c378ba93a1d18 100644 (file)
@@ -236,7 +236,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.