summaryrefslogtreecommitdiffstats
path: root/Lib/bdb.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-29 22:39:32 (GMT)
committerGuido van Rossum <guido@python.org>1999-01-29 22:39:32 (GMT)
commitca44236a1c313a6257c49ce223e4515329348015 (patch)
tree40969f81b42f93a764d907dabb674aa849feeadd /Lib/bdb.py
parent7281b3b77925dcb445413fbcf906b2f94eeabc59 (diff)
downloadcpython-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.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py
index b70fdad..abfb7de 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)