Commit 39926e4b authored by Guido van Rossum's avatar Guido van Rossum

Use of Breakpoint class should be bdb.Breakpoint.

parent 5d42b5b7
......@@ -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)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment