summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-11-12 09:45:19 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-11-12 09:45:19 -0500
commit839c08ae17908315077ceba765009dc3b9e68e2b (patch)
tree4ab901ebcd6e0f0290173d7d95390086d6f09d24 /CHANGES.txt
parent744ed958f05cf74b4a41eff14e3eed57fb9d5443 (diff)
downloadpython-coveragepy-839c08ae17908315077ceba765009dc3b9e68e2b.tar.gz
Edits
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 1300faf..7ff2da9 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -17,18 +17,18 @@ Version 3.5.4b1
switch that indicates in the exit status whether the coverage percentage was
less than a particular value. Closes `issue 139`_.
+- The reporting functions coverage.report(), coverage.html_report(), and
+ coverage.xml_report() now all return a float, the total percentage covered
+ measurement.
+
- The HTML report's title can now be set in the configuration file, with the
``--title`` switch on the command line, or via the API.
- Embarrassingly, the `[xml] output=' setting in the .coveragerc file simply
didn't work. Now it does.
-- The reporting functions coverage.report(), coverage.html_report(), and
- coverage.xml_report() now all return a float, the total percentage covered
- measurement.
-
-- On Windows, files are now reported in their correct case. Fixes
- `issue 89`_ and `issue 203`_.
+- On Windows, files are now reported in their correct case, fixing `issue 89`_
+ and `issue 203`_.
- Running an HTML report in Python 3 in the same directory as an old Python 2
HTML report would fail with a UnicodeDecodeError. This issue (`issue 193`_)