diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-03-15 19:20:14 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-03-15 19:20:14 -0400 |
commit | 43776062a15640c62d94d8a9c19edadb21a773be (patch) | |
tree | d9140cf1ae1c5e7600f2eef6295bd6b6ef8cca45 /lab/trace_sample.py | |
parent | d1feae87031c974cdd6c7d202c289804909911e7 (diff) | |
download | python-coveragepy-git-43776062a15640c62d94d8a9c19edadb21a773be.tar.gz |
Remove a little noise from this lab tool
Diffstat (limited to 'lab/trace_sample.py')
-rw-r--r-- | lab/trace_sample.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lab/trace_sample.py b/lab/trace_sample.py index 6d616a51..2fec9424 100644 --- a/lab/trace_sample.py +++ b/lab/trace_sample.py @@ -7,12 +7,11 @@ def trace(frame, event, arg): #if event == 'line':
global nest
- print "%s%s %s %d (%r)" % (
+ print "%s%s %s %d" % (
" " * nest,
event,
os.path.basename(frame.f_code.co_filename),
frame.f_lineno,
- arg
)
if event == 'call':
|