summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-01 12:42:04 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-01 12:42:04 -0400
commitdb337283466520c76334c382d0492a1e8f92aa2d (patch)
tree89cc7733237204d1c713bba2ee244a47f364d78a /CHANGES.txt
parente3c8412850ff8f7291b1bde3ab6553814b4951fc (diff)
downloadpython-coveragepy-git-db337283466520c76334c382d0492a1e8f92aa2d.tar.gz
Plugins can get built-in python reporting.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 0883caa5..492e831c 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -38,6 +38,9 @@ Latest
- Plugins are now initialized differently. Instead of looking for a class
called ``Plugin``, coverage.py looks for a function called ``coverage_init``.
+- A file-tracing plugin can now ask to have built-in Python reporting by
+ returning `"python"` from its `file_reporter()` method.
+
- Code that was executed with `exec` would be mis-attributed to the file that
called it. This is now fixed, closing `issue 380`_.