https://github.com/python/cpython/commit/3e48fbef9847623823314cd61d0f173448e8d875 commit: 3e48fbef9847623823314cd61d0f173448e8d875 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: gaogaotiantian <[email protected]> date: 2025-12-10T22:46:50Z summary:
[3.13] [Docs] Fix typo in bdb: `is_skipped_line` to `is_skipped_module` (GH-141771) (#142548) [Docs] Fix typo in bdb: `is_skipped_line` to `is_skipped_module` (GH-141771) (cherry picked from commit e5adaafc52060ece7232ee074a7133b78fe01f9e) Co-authored-by: Guo Ci <[email protected]> files: M Doc/library/bdb.rst diff --git a/Doc/library/bdb.rst b/Doc/library/bdb.rst index 85df7914a9a014..b377b90557c255 100644 --- a/Doc/library/bdb.rst +++ b/Doc/library/bdb.rst @@ -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. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
