diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-16 23:42:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 23:42:56 (GMT) |
commit | d22fa22cca60df1ed8860b62732efa630943c7bd (patch) | |
tree | d189dec438e44321ec160d2dcda9d4ddccb5dd2f | |
parent | 52461cb1be365eb1943421530871eb96a0e8b268 (diff) | |
download | cpython-d22fa22cca60df1ed8860b62732efa630943c7bd.zip cpython-d22fa22cca60df1ed8860b62732efa630943c7bd.tar.gz cpython-d22fa22cca60df1ed8860b62732efa630943c7bd.tar.bz2 |
fix docstring typo in bdb.py (GH-22323) (#26179)
(cherry picked from commit be54fb5ae73db507a0cdb1884d553aca5966f0e6)
Co-authored-by: flizzywine <1041958497@qq.com>
-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 |