[Python-checkins] fix docstring typo in bdb.py (GH-22323) (#26179)

iritkatriel webhook-mailer at python.org
Sun May 16 19:43:00 EDT 2021


https://github.com/python/cpython/commit/d22fa22cca60df1ed8860b62732efa630943c7bd
commit: d22fa22cca60df1ed8860b62732efa630943c7bd
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: iritkatriel <iritkatriel at yahoo.com>
date: 2021-05-17T00:42:56+01:00
summary:

fix docstring typo in bdb.py (GH-22323) (#26179)

(cherry picked from commit be54fb5ae73db507a0cdb1884d553aca5966f0e6)

Co-authored-by: flizzywine <1041958497 at qq.com>

files:
M Lib/bdb.py

diff --git a/Lib/bdb.py b/Lib/bdb.py
index abb50c092e69b..75d6113576372 100644
--- a/Lib/bdb.py
+++ b/Lib/bdb.py
@@ -119,7 +119,7 @@ def dispatch_call(self, frame, arg):
         """Invoke user function and return trace function for call event.
 
         If the debugger stops on this function call, invoke
-        self.user_call(). Raise BbdQuit if self.quitting is set.
+        self.user_call(). Raise BdbQuit if self.quitting is set.
         Return self.trace_dispatch to continue tracing in this scope.
         """
         # XXX 'arg' is no longer used



More information about the Python-checkins mailing list