diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-07-25 19:28:51 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-07-25 19:28:51 -0400 |
commit | 5d1fb03bf3c3eb4f511289e0728f37a183296d4a (patch) | |
tree | 9ed44e010aab9eb94d5180f3e76c821ce0367ee2 /doc/branch.rst | |
parent | a50136c79ca31513098c3d81ef89d6071fe01ae7 (diff) | |
download | python-coveragepy-git-5d1fb03bf3c3eb4f511289e0728f37a183296d4a.tar.gz |
Lots of doc updates, more to come.
Diffstat (limited to 'doc/branch.rst')
-rw-r--r-- | doc/branch.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/branch.rst b/doc/branch.rst index 71681317..8f1583a1 100644 --- a/doc/branch.rst +++ b/doc/branch.rst @@ -10,10 +10,10 @@ Branch coverage measurement :linenothreshold: 5 -Coverage.py now supports branch coverage measurement. Where a line in your -program could jump to more than one next line, coverage.py tracks which of -those destinations are actually visited, and flags lines that haven't visited -all of their possible destinations. +In addition to the usual statement coverage, Coverage.py also supports branch +coverage measurement. Where a line in your program could jump to more than one +next line, coverage.py tracks which of those destinations are actually visited, +and flags lines that haven't visited all of their possible destinations. For example:: |