From: Guido van Rossum Date: Fri, 29 Jan 1999 22:39:32 +0000 (+0000) Subject: Embarrassing: remove a debug print statement from set_break() for the X-Git-Tag: v1.5.2b2~192 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca44236a1c313a6257c49ce223e4515329348015;p=thirdparty%2FPython%2Fcpython.git Embarrassing: remove a debug print statement from set_break() for the second time! --- diff --git a/Lib/bdb.py b/Lib/bdb.py index b70fdad52d5c..abfb7ded1304 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -210,7 +210,6 @@ class Bdb: if not lineno in list: list.append(lineno) bp = Breakpoint(filename, lineno, temporary, cond) - print "Breakpoint in", filename, "at", lineno def clear_break(self, filename, lineno): filename = self.canonic(filename)