diff options
author | Skip Montanaro <skip@pobox.com> | 2007-11-23 17:08:35 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2007-11-23 17:08:35 (GMT) |
commit | 6d7914bf22ff657c1047fde8cf85861f16c57d8c (patch) | |
tree | c0fc709cc5d561625d4e31935d293ba763a0d1b6 /Lib/trace.py | |
parent | f7b462f696dfb6ceabe9016611492a85b5109ac3 (diff) | |
download | cpython-6d7914bf22ff657c1047fde8cf85861f16c57d8c.zip cpython-6d7914bf22ff657c1047fde8cf85861f16c57d8c.tar.gz cpython-6d7914bf22ff657c1047fde8cf85861f16c57d8c.tar.bz2 |
Make trace and doctest play nice together (issue 1429818). Will backport.
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] |