diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-05-10 17:09:14 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-05-10 17:09:14 -0400 |
commit | 8c48df1424272a5205a34d875738c7cc93d41e15 (patch) | |
tree | c1345e015c87df88ff18919c1e054853e4fb5425 | |
parent | c520c8148a12a2c6c4ab056eb8cd1197bbc9ae54 (diff) | |
download | python-coveragepy-8c48df1424272a5205a34d875738c7cc93d41e15.tar.gz |
Correct inaccuracies in CHANGES
-rw-r--r-- | CHANGES.rst | 4 | ||||
-rw-r--r-- | doc/changes.rst | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 9e3bf70..dd1e673 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -42,9 +42,9 @@ Version 4.1b3 --- 2016-05-10 - Officially support PyPy 5.1, which required no changes, just updates to the docs. -- The `coverage.report` function had two parameters with non-None defaults, +- The `Coverage.report` function had two parameters with non-None defaults, which have been changed. `show_missing` used to default to True, but now - defaults to None. If you had been calling `coverage.report` without + defaults to None. If you had been calling `Coverage.report` without specifying `show_missing`, you'll need to explicitly set it to True to keep the same behavior. `skip_covered` used to default to False. It is now None, which doesn't change the behavior. This fixes `issue 485`_. diff --git a/doc/changes.rst b/doc/changes.rst index 563a238..f95e017 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -50,7 +50,7 @@ history, see the `CHANGES.rst`_ file in the source tree. .. _changes_41: -Version 4.1b2 pre-release --- 2016-01-23 +Version 4.1b3 pre-release --- 2016-05-10 ---------------------------------------- - Branch analysis has been rewritten: it used to be based on bytecode, but now @@ -113,9 +113,9 @@ Version 4.1b2 pre-release --- 2016-01-23 installed, to help diagnose problems. The docs mention which features need the C extension. (`issue 479`_) -- The `coverage.report` function had two parameters with non-None defaults, +- The `Coverage.report` function had two parameters with non-None defaults, which have been changed. `show_missing` used to default to True, but now - defaults to None. If you had been calling `coverage.report` without + defaults to None. If you had been calling `Coverage.report` without specifying `show_missing`, you'll need to explicitly set it to True to keep the same behavior. `skip_covered` used to default to False. It is now None, which doesn't change the behavior. This fixes `issue 485`_. |