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