]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix docstring typo in bdb.py (GH-22323)
authorflizzywine <1041958497@qq.com>
Sun, 16 May 2021 23:20:33 +0000 (07:20 +0800)
committerGitHub <noreply@github.com>
Sun, 16 May 2021 23:20:33 +0000 (00:20 +0100)
Lib/bdb.py

index abb50c092e69bb1a1f18f9905a479e083bd9620f..75d6113576372e94d8a41403ba01fe96e6665af3 100644 (file)
@@ -119,7 +119,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