diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-10-22 09:45:53 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-10-22 09:45:53 -0400 |
commit | b9901ef21618c7936d52fb96955c7c34e87b56fd (patch) | |
tree | 94131079d4c1021010775ad24bfd1f4f666c95fa | |
parent | 0aec827ace5ad128351858a5a8648e82dc9f97ac (diff) | |
download | python-coveragepy-git-b9901ef21618c7936d52fb96955c7c34e87b56fd.tar.gz |
Update changes
-rw-r--r-- | CHANGES.rst | 17 | ||||
-rw-r--r-- | coverage/control.py | 2 |
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 |