summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-05-16 16:43:26 -0700
committerGitHub <noreply@github.com>2021-05-17 00:43:26 +0100
commitf84ef3cd2585625dd9a53a24e540e96ed295133b (patch)
treeb2a02bca2348f2886e5fb75cde32749859f71dca
parentea33d204ce4408b7b15ca94702b76432bab6caa3 (diff)
downloadcpython-git-f84ef3cd2585625dd9a53a24e540e96ed295133b.tar.gz
fix docstring typo in bdb.py (GH-22323) (#26180)
(cherry picked from commit be54fb5ae73db507a0cdb1884d553aca5966f0e6) Co-authored-by: flizzywine <1041958497@qq.com>
-rw-r--r--Lib/bdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py
index b18a0612d8..384a272a85 100644
--- a/Lib/bdb.py
+++ b/Lib/bdb.py
@@ -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