diff options
author | Guido van Rossum <guido@python.org> | 1999-01-29 22:39:32 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-29 22:39:32 +0000 |
commit | ca44236a1c313a6257c49ce223e4515329348015 (patch) | |
tree | 40969f81b42f93a764d907dabb674aa849feeadd | |
parent | 7281b3b77925dcb445413fbcf906b2f94eeabc59 (diff) | |
download | cpython-git-ca44236a1c313a6257c49ce223e4515329348015.tar.gz |
Embarrassing: remove a debug print statement from set_break() for the
second time!
-rw-r--r-- | Lib/bdb.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py index b70fdad52d..abfb7ded13 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) |