From f367d2a09b87d96a9af1f7bbe9b24f291cb1fe35 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 13 Oct 2010 09:42:23 -0400 Subject: Jython reports $py.class files in the trace function, so adapt to find the source file. --- coverage/control.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'coverage/control.py') diff --git a/coverage/control.py b/coverage/control.py index 28c8850f..cdaf9721 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -231,6 +231,11 @@ class coverage(object): dunder_file = frame.f_globals.get('__file__') if dunder_file: filename = self._source_for_file(dunder_file) + + # Jython reports the .class file to the tracer, use the source file. + if filename.endswith("$py.class"): + filename = filename[:-9] + ".py" + canonical = self.file_locator.canonical_filename(filename) # If the user specified source, then that's authoritative about what to -- cgit v1.2.1