summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst17
-rw-r--r--coverage/control.py2
2 files changed, 12 insertions, 7 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index d85b34dd..502b6036 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -25,18 +25,23 @@ Unreleased
- Data files are now about 15% smaller.
-- The "dataio" debug setting now also logs when data files are deleted during
- combining.
+- Improvements in the ``[run] debug`` setting:
+
+ - The "dataio" debug setting now also logs when data files are deleted during
+ combining or erasing.
+
+ - A new debug option, "multiproc", for logging the behavior of
+ ``concurrency=multiprocessing``.
+
+ - If you used the debug options "config" and "callers" together, you'd get a
+ call stack printed for every line in the multi-line config output. This is
+ now fixed.
- Corrected the name of the jquery.ba-throttle-debounce.js library. Thanks,
Ben Finney. Closes `issue 505`_.
- Support PyPy3 5.2 alpha 1.
-- If you used the debug options "config" and "callers" together, you'd get a
- call stack printed for every line in the multi-line config output. This is
- now fixed.
-
.. _issue 412: https://bitbucket.org/ned/coveragepy/issues/412/coverage-combine-should-error-if-no
.. _issue 505: https://bitbucket.org/ned/coveragepy/issues/505/use-canonical-filename-for-debounce
.. _issue 510: https://bitbucket.org/ned/coveragepy/issues/510/erase-still-needed-in-42
diff --git a/coverage/control.py b/coverage/control.py
index 7d418ff1..bcc296f5 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -35,7 +35,7 @@ from coverage.xmlreport import XmlReporter
os = isolate_module(os)
# Pypy has some unusual stuff in the "stdlib". Consider those locations
-# when deciding where the stdlib is. This modules are not used for anything,
+# when deciding where the stdlib is. These modules are not used for anything,
# they are modules importable from the pypy lib directories, so that we can
# find those directories.
_structseq = _pypy_irc_topic = None