mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Use of Breakpoint class should be bdb.Breakpoint.
This commit is contained in:
parent
5d42b5b74d
commit
39926e4bba
1 changed files with 1 additions and 1 deletions
|
@ -289,4 +289,4 @@ class Debugger(bdb.Bdb):
|
|||
list = self.breaks[filename]
|
||||
if not lineno in list:
|
||||
list.append(lineno)
|
||||
bp = Breakpoint(filename, lineno, temporary, cond)
|
||||
bp = bdb.Breakpoint(filename, lineno, temporary, cond)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue