summaryrefslogtreecommitdiff
path: root/test/farm/run/src
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-09-17 06:05:19 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-09-17 06:05:19 -0400
commitc6edabced0b503a7a1a2058056ef8704c8087964 (patch)
treefc576b296407940c55b3f7563bad8329d21c8ccf /test/farm/run/src
parente0cf0dd127248637ba68969ed7156c378f78c3bd (diff)
downloadpython-coveragepy-git-c6edabced0b503a7a1a2058056ef8704c8087964.tar.gz
Change how run_timid checks the name of the Tracer class, so that 2.x and 3.x will do it the same.
Diffstat (limited to 'test/farm/run/src')
-rw-r--r--test/farm/run/src/showtrace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/farm/run/src/showtrace.py b/test/farm/run/src/showtrace.py
index 49e212e8..3708ac08 100644
--- a/test/farm/run/src/showtrace.py
+++ b/test/farm/run/src/showtrace.py
@@ -12,4 +12,4 @@ trace_fn = sys._getframe(0).f_trace
if trace_fn is None:
print "None"
else:
- print trace_fn.im_class
+ print trace_fn.im_class.__name__