From: Guido van Rossum Date: Sat, 24 Oct 1998 01:28:22 +0000 (+0000) Subject: Use of Breakpoint class should be bdb.Breakpoint. X-Git-Tag: v1.5.2b1~271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39926e4bbad759fb6bad3945ebc1fe45cf5d7515;p=python Use of Breakpoint class should be bdb.Breakpoint. --- diff --git a/Tools/idle/Debugger.py b/Tools/idle/Debugger.py index 0b2e01ca28..7cb2fdbdde 100644 --- a/Tools/idle/Debugger.py +++ b/Tools/idle/Debugger.py @@ -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)