summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-10-10 23:05:41 +0000
committerGuido van Rossum <guido@python.org>2003-10-10 23:05:41 +0000
commitf861ca28f758cf5721fb00e6405972ce1f991ba8 (patch)
tree18045962212e3e7929d00344cd8003e69caa0ea0
parentc28b674934922c3fa5f073adb1c300adbf161372 (diff)
downloadcpython-f861ca28f758cf5721fb00e6405972ce1f991ba8.tar.gz
Ouch. Remove debug code containing obscenities. :-)
-rw-r--r--Lib/trace.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/trace.py b/Lib/trace.py
index 3da9cdd104..ade55bd551 100644
--- a/Lib/trace.py
+++ b/Lib/trace.py
@@ -295,9 +295,6 @@ class CoverageResults:
def write_results_file(self, path, lines, lnotab, lines_hit):
"""Return a coverage results file in path."""
- print "path =", `path`
- if "/arse" in path:
- import pdb; pdb.set_trace()
try:
outfile = open(path, "w")
except IOError, err: