Make trace and doctest play nice together (issue 1429818). Will backport.

This commit is contained in:
Skip Montanaro 2007-11-23 17:08:35 +00:00
parent f7b462f696
commit 6d7914bf22
2 changed files with 13 additions and 0 deletions

View file

@ -286,6 +286,8 @@ class CoverageResults:
# skip some "files" we don't care about...
if filename == "<string>":
continue
if filename.startswith("<doctest "):
continue
if filename.endswith((".pyc", ".pyo")):
filename = filename[:-1]