summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-01-24 13:42:19 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-01-24 13:42:19 -0500
commit0bc74d31222f80291aeb706230b48277372f5d91 (patch)
tree91be67a73594413b303aa14e9f750898a84b06b8
parentc0b8f8ac31deb1f76dd8459b25c3d65177ec565d (diff)
downloadpython-coveragepy-git-0bc74d31222f80291aeb706230b48277372f5d91.tar.gz
Formatting of changes
-rw-r--r--CHANGES.rst16
-rw-r--r--doc/changes.rst21
2 files changed, 21 insertions, 16 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index d78dfedc..550a595c 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -36,18 +36,18 @@ Version 4.1b1 --- 2016-01-10
- Branch analysis has been rewritten: it used to be based on bytecode, but now
uses AST analysis. This has changed a number of things:
- - More code paths are now considered runnable, especially in ``try``/``except``
- structures. This may mean that coverage.py will identify more code paths
- as uncovered. This could either raise or lower your overall coverage
- number.
+ - More code paths are now considered runnable, especially in
+ ``try``/``except`` structures. This may mean that coverage.py will
+ identify more code paths as uncovered. This could either raise or lower
+ your overall coverage number.
- - Python 3.5's ``async`` and ``await`` keywords are properly supported, fixing
- `issue 434`_.
+ - Python 3.5's ``async`` and ``await`` keywords are properly supported,
+ fixing `issue 434`_.
- Some long-standing branch coverage bugs were fixed:
- - `issue 129`_: functions with only a docstring for a body would incorrectly
- report a missing branch on the ``def`` line.
+ - `issue 129`_: functions with only a docstring for a body would
+ incorrectly report a missing branch on the ``def`` line.
- `issue 212`_: code in an ``except`` block could be incorrectly marked as
a missing branch.
diff --git a/doc/changes.rst b/doc/changes.rst
index 46459b13..9290820b 100644
--- a/doc/changes.rst
+++ b/doc/changes.rst
@@ -49,24 +49,29 @@ history, see the `CHANGES.rst`_ file in the source tree.
.. _changes_41:
+Unreleased
+----------
+
+
+
Version 4.1b2 pre-release --- 2016-01-23
----------------------------------------
- Branch analysis has been rewritten: it used to be based on bytecode, but now
uses AST analysis. This has changed a number of things:
- - More code paths are now considered runnable, especially in ``try``/``except``
- structures. This may mean that coverage.py will identify more code paths
- as uncovered. This could either raise or lower your overall coverage
- number.
+ - More code paths are now considered runnable, especially in
+ ``try``/``except`` structures. This may mean that coverage.py will
+ identify more code paths as uncovered. This could either raise or lower
+ your overall coverage number.
- - Python 3.5's ``async`` and ``await`` keywords are properly supported, fixing
- `issue 434`_.
+ - Python 3.5's ``async`` and ``await`` keywords are properly supported,
+ fixing `issue 434`_.
- Some long-standing branch coverage bugs were fixed:
- - `issue 129`_: functions with only a docstring for a body would incorrectly
- report a missing branch on the ``def`` line.
+ - `issue 129`_: functions with only a docstring for a body would
+ incorrectly report a missing branch on the ``def`` line.
- `issue 212`_: code in an ``except`` block could be incorrectly marked as
a missing branch.