diff options
| author | Skip Montanaro <skip@pobox.com> | 2007-11-23 17:09:34 (GMT) |
|---|---|---|
| committer | Skip Montanaro <skip@pobox.com> | 2007-11-23 17:09:34 (GMT) |
| commit | ab4fce4d7c2565c3557f59e213f0dcbdceb4e88d (patch) | |
| tree | 10d17162a7677cb77a0626c772cb42ee1096eb0e /Lib/trace.py | |
| parent | a95fdb4f9cd1a4eda4100b1b3b4afc5b275607a1 (diff) | |
| download | cpython-ab4fce4d7c2565c3557f59e213f0dcbdceb4e88d.zip cpython-ab4fce4d7c2565c3557f59e213f0dcbdceb4e88d.tar.gz cpython-ab4fce4d7c2565c3557f59e213f0dcbdceb4e88d.tar.bz2 | |
Make trace and doctest play nice together (issue 1429818). Backported from
head.
Diffstat (limited to 'Lib/trace.py')
| -rw-r--r-- | Lib/trace.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index 364e3f7..3f00605 100644 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -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] |
