diff options
author | Skip Montanaro <skip@pobox.com> | 2007-11-24 04:29:08 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2007-11-24 04:29:08 +0000 |
commit | d3a1bdf4d93c07e738d454d612a44b9094c67b18 (patch) | |
tree | 7aa568663c6aceda1889e61f1ef3e861d9fd9a4c /Lib/trace.py | |
parent | 3e9ac99fe77ef577fe749d8e11364f9fc42afe7e (diff) | |
download | cpython-git-d3a1bdf4d93c07e738d454d612a44b9094c67b18.tar.gz |
revert change that breaks test_doctest (which I forgot to run - sorry)
Diffstat (limited to 'Lib/trace.py')
-rw-r--r-- | Lib/trace.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index 3f00605254..364e3f7bc9 100644 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -286,8 +286,6 @@ 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] |