summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-04-25 22:00:36 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-04-25 22:00:36 -0400
commit3ec7ec05e074911e7eba7f8a4e0cb3682f15b0a9 (patch)
tree0732d21d3f5589d563e429afbe26a5359ab5c226 /CHANGES.txt
parenta64cdfd45a453782d4277523bdafd72bbdb44143 (diff)
downloadpython-coveragepy-3ec7ec05e074911e7eba7f8a4e0cb3682f15b0a9.tar.gz
Since people make this mistake, and it's mysterious: accept a single string for omit and include.
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 45dc1dc..7d71d01 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -19,6 +19,9 @@ Version 3.5
If it does not, it is interpreted relative to the current directory.
Closes `issue 121`.
+- The ``coverage()`` constructor accepts single strings for the ``omit=`` and
+ ``include=`` arguments, adapting to a common error in programmatic use.
+
- Modules can now be run directly using ``coverage run -m modulename``, to
mirror Python's ``-m`` flag. Closes `issue 95_`, thanks, Brandon Rhodes.