summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-18 06:16:55 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-11-18 12:12:27 -0500
commit2094909df35db45ca7a409cc37f38d49c3191d2a (patch)
treea48f2660032c26b364fb034bc1459e7674346bba /CHANGES.rst
parent181d71c7ae537299a74291e4671bd8b896bcd55d (diff)
downloadpython-coveragepy-git-2094909df35db45ca7a409cc37f38d49c3191d2a.tar.gz
fix: suffix=False will suppress the suffix even with multiprocessing. #989
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 1d9ec922..0c48b706 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -37,6 +37,10 @@ Unreleased
- API: The exceptions raised by Coverage.py have been specialized, to provide
finer-grained catching of exceptions by third-party code.
+- API: Using ``suffix=False`` when constructing a Coverage object with
+ multiprocessing wouldn't suppress the data file suffix (`issue 989`_). This
+ is now fixed.
+
- Debug: The `coverage debug data` command will now sniff out combinable data
files, and report on all of them.
@@ -44,6 +48,7 @@ Unreleased
time, and show all of them, though this was never documented. This no longer
works, to allow for command-line options in the future.
+.. _issue 989: https://github.com/nedbat/coveragepy/issues/989
.. _issue 1203: https://github.com/nedbat/coveragepy/issues/1203