commit | 664ad76a347cfa798b7229286706edd155c6aaa3 | [log] [tgz] |
---|---|---|
author | Skip Montanaro <skip@pobox.com> | Sat Nov 24 14:31:16 2007 +0000 |
committer | Skip Montanaro <skip@pobox.com> | Sat Nov 24 14:31:16 2007 +0000 |
tree | 1752478e5099aa03609abdc9b58478cd8a6f2181 | |
parent | 30f61cbb1331615af829aea69d2586e990488525 [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]