From f2d110d63c60b064a7fe954fb7860292d85b03a0 Mon Sep 17 00:00:00 2001 From: Guo Ci Date: Wed, 19 Nov 2025 16:41:17 -0500 Subject: [PATCH] Fix typo: `is_skipped_line` to `is_skipped_module` --- Doc/library/bdb.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/bdb.rst b/Doc/library/bdb.rst index c7a3e0c596b9d0..a3c6da7a6d686b 100644 --- a/Doc/library/bdb.rst +++ b/Doc/library/bdb.rst @@ -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.