summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-01 21:15:40 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-01 21:15:40 -0500
commit6c76f221a68c88ae6820bafabac19653dc735a97 (patch)
treed45f584aa6899cc88b20d2df01236841c190851f
parentc77e07fb63d1ac78a18996928945091b435c790b (diff)
downloadpython-coveragepy-6c76f221a68c88ae6820bafabac19653dc735a97.tar.gz
The command help said --branch was HIGHLY EXPERIMENTAL!!
-rw-r--r--TODO.txt1
-rw-r--r--coverage/cmdline.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/TODO.txt b/TODO.txt
index 2a52887..4761161 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -15,6 +15,7 @@ Coverage TODO
+ A missing branch to leave the function shows an annotation of -1. Now "exit".
+ XML report needs to get branch information.
+ Add branch info to "coverage debug data"
++ Polish up the help, and double-check the docs.
* 3.3
diff --git a/coverage/cmdline.py b/coverage/cmdline.py
index 938099e..cb03fb2 100644
--- a/coverage/cmdline.py
+++ b/coverage/cmdline.py
@@ -11,7 +11,7 @@ class Opts(object):
branch = optparse.Option(
'', '--branch', action='store_true',
- help="Measure branch execution. HIGHLY EXPERIMENTAL!"
+ help="Measure branch coverage in addition to statement coverage."
)
directory = optparse.Option(
'-d', '--directory', action='store',