From: flizzywine <1041958497@qq.com> Date: Sun, 16 May 2021 23:20:33 +0000 (+0800) Subject: fix docstring typo in bdb.py (GH-22323) X-Git-Tag: v3.11.0a1~1102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be54fb5ae73db507a0cdb1884d553aca5966f0e6;p=thirdparty%2FPython%2Fcpython.git fix docstring typo in bdb.py (GH-22323) --- diff --git a/Lib/bdb.py b/Lib/bdb.py index abb50c092e69..75d611357637 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -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