]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix docstring typo in bdb.py (GH-22323) (#26180)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 16 May 2021 23:43:26 +0000 (16:43 -0700)
committerGitHub <noreply@github.com>
Sun, 16 May 2021 23:43:26 +0000 (00:43 +0100)
(cherry picked from commit be54fb5ae73db507a0cdb1884d553aca5966f0e6)

Co-authored-by: flizzywine <1041958497@qq.com>
Lib/bdb.py

index b18a0612d8c789b9b51216f3ebffe910751aadec..384a272a85217bfc52e7880128952a19f4303109 100644 (file)
@@ -117,7 +117,7 @@ class Bdb:
         """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