summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-05-31 09:35:10 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-05-31 09:35:10 -0400
commita477feb41c930acd6a2b21e75982d033a89ceae7 (patch)
tree500b72b20279dc0b66c5f0e8bbdd2e68e6f146bb /CHANGES.txt
parent603e508d2aac52311dd9f6dfdeaa3f02e8c0b582 (diff)
downloadpython-coveragepy-a477feb41c930acd6a2b21e75982d033a89ceae7.tar.gz
Start getting docs ready for 3.5b1
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt12
1 files changed, 10 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a4ce47c..7dfad51 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,8 +3,8 @@ Change history for Coverage.py
------------------------------
-Version 3.5
------------
+Version 3.5b1
+-------------
- The HTML report now has hotkeys. Try ``n``, ``s``, ``m``, ``x``, ``b``,
``p``, and ``c`` on the overview page to change the column sorting.
@@ -19,6 +19,13 @@ Version 3.5
If it does not, it is interpreted relative to the current directory.
Closes `issue 121`_.
+- Partial branch warnings can now be pragma'd away. The configuration option
+ ``partial_branches`` is a list of regular expressions. Lines matching any of
+ those expressions will never be marked as a partial branch. In addition,
+ there's a built-in list of regular expressions marking statements which should
+ never be marked as partial. This list includes ``while True:``, ``while 1:``,
+ ``if 1:``, and ``if 0:``.
+
- The ``coverage()`` constructor accepts single strings for the ``omit=`` and
``include=`` arguments, adapting to a common error in programmatic use.
@@ -72,6 +79,7 @@ Version 3.5
.. _issue 123: https://bitbucket.org/ned/coveragepy/issue/123/pyeval_settrace-used-in-way-that-breaks
.. _issue 125: https://bitbucket.org/ned/coveragepy/issue/125/coverage-removes-decoratortoolss-tracing
+
Version 3.4 --- 19 September 2010
---------------------------------