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 | 811f62177481ced0c4de416b893b1978f36cdeb0 (patch) | |
tree | d503ca177ee83a02e2ed913e49e218502255e1d2 /lab/trace_sample.py | |
parent | d31f90f2b3dc0e49c35615228f5c5ee649ec4823 (diff) | |
download | python-coveragepy-811f62177481ced0c4de416b893b1978f36cdeb0.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 6d616a5..2fec942 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':
|