diff options
author | flizzywine <1041958497@qq.com> | 2021-05-16 23:20:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 23:20:33 (GMT) |
commit | be54fb5ae73db507a0cdb1884d553aca5966f0e6 (patch) | |
tree | 28fa10d8240dc56fa0e121c630b4e043a2e965f3 /Lib/bdb.py | |
parent | a42d98ed91cd1f08b2e9734ca6ca136dd10dff5d (diff) | |
download | cpython-be54fb5ae73db507a0cdb1884d553aca5966f0e6.zip cpython-be54fb5ae73db507a0cdb1884d553aca5966f0e6.tar.gz cpython-be54fb5ae73db507a0cdb1884d553aca5966f0e6.tar.bz2 |
fix docstring typo in bdb.py (GH-22323)
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r-- | Lib/bdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |