mirror of
https://github.com/python/cpython.git
synced 2025-10-05 06:31:48 +00:00
Make trace and doctest play nice together (issue 1429818). Backported from
head.
This commit is contained in:
parent
a95fdb4f9c
commit
ab4fce4d7c
2 changed files with 13 additions and 0 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue