summaryrefslogtreecommitdiff
path: root/lab/trace_sample.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-03-15 19:20:21 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-03-15 19:20:21 -0400
commitd529c33c5d3434f25d06af872438f8d33153a8bb (patch)
treed97c8b0220c3dd7663de530c39c8f44be06e75fc /lab/trace_sample.py
parent786ddc82a22314ebaa93f0f63a54fd443d09812e (diff)
parent811f62177481ced0c4de416b893b1978f36cdeb0 (diff)
downloadpython-coveragepy-d529c33c5d3434f25d06af872438f8d33153a8bb.tar.gz
Automated merge with ssh://bitbucket.org/ned/coveragepy
Diffstat (limited to 'lab/trace_sample.py')
-rw-r--r--lab/trace_sample.py3
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':