summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-04-11 01:05:53 (GMT)
committerBrett Cannon <brett@python.org>2012-04-11 01:05:53 (GMT)
commit9fe92d1de52fcb63527b2cffa5dbfbc2ae719508 (patch)
treec6ca67b49a46525b4c5957fa404438bdff073f00 /Misc
parentec766a61795a21015ba5b95c106f1c2b089b3ff0 (diff)
downloadcpython-9fe92d1de52fcb63527b2cffa5dbfbc2ae719508.zip
cpython-9fe92d1de52fcb63527b2cffa5dbfbc2ae719508.tar.gz
cpython-9fe92d1de52fcb63527b2cffa5dbfbc2ae719508.tar.bz2
Make the trace module ignore modules whose names start with "<" and
end with ">", i.e. follow convention.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6eb401c..f7440ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,10 @@ Core and Builtins
Library
-------
+- trace.CoverageResults.is_ignored_filename() now ignores any name that starts
+ with "<" and ends with ">" instead of special-casing "<string>" and
+ "<doctest ".
+
- Issue #12537: The mailbox module no longer depends on knowledge of internal
implementation details of the email package Message object.