diff options
author | Guido van Rossum <guido@python.org> | 2003-10-10 23:05:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-10-10 23:05:41 (GMT) |
commit | 80bd5ca722875a685c7595358ec4d9173d777ece (patch) | |
tree | 97ea82285666bc0e9d4cc8a4bad4d81d9b868115 | |
parent | b427c00376e0737147af9265755af454cbdb92cc (diff) | |
download | cpython-80bd5ca722875a685c7595358ec4d9173d777ece.zip cpython-80bd5ca722875a685c7595358ec4d9173d777ece.tar.gz cpython-80bd5ca722875a685c7595358ec4d9173d777ece.tar.bz2 |
Ouch. Remove debug code containing obscenities. :-)
-rw-r--r-- | Lib/trace.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index 3da9cdd..ade55bd 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: |