commit | 58a6f446dbf48be0c0bdcb19e82a51dea94bd55d | [log] [tgz] |
---|---|---|
author | Skip Montanaro <skip@pobox.com> | Sat Nov 24 14:30:47 2007 +0000 |
committer | Skip Montanaro <skip@pobox.com> | Sat Nov 24 14:30:47 2007 +0000 |
tree | 0384cd8f651a168c3da874e83e82b8154a8abe07 | |
parent | b67da6ed2b182d2ef0b4e86e1dd402d27c53422d [diff] [blame] |
back in these go - thanks to Titus Brown for the fix
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 @@ # 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]