summaryrefslogtreecommitdiff
path: root/doc/cmd.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-02 07:27:14 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-02 07:27:14 -0500
commit968fc008e4c0453ef05aa211e85e202e7b1d2342 (patch)
tree91ae38367181a9ee0dda9ed22aa832031ca4c3d7 /doc/cmd.rst
parent007a4a1ba529e2913357387c1f42b6028860fe98 (diff)
downloadpython-coveragepy-git-968fc008e4c0453ef05aa211e85e202e7b1d2342.tar.gz
Massive eol whitespace clean-up.
Diffstat (limited to 'doc/cmd.rst')
-rw-r--r--doc/cmd.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/cmd.rst b/doc/cmd.rst
index 41de00c9..ab93845e 100644
--- a/doc/cmd.rst
+++ b/doc/cmd.rst
@@ -71,7 +71,7 @@ can set a new file name with the COVERAGE_FILE environment variable. By default
each run of your program starts with an empty data set. If you need to run your
program multiple times to get complete data (for example, because you need to
supply disjoint options), you can accumulate data across runs with the ``-a``
-flag on the **run** command.
+flag on the **run** command.
To erase the collected data, use the **erase** command::
@@ -113,7 +113,7 @@ as a percentage.
The ``-m`` flag also shows the line numbers of missing statements::
- $ coverage report -m
+ $ coverage report -m
Name Stmts Exec Cover Missing
-------------------------------------------------------
my_program 20 16 80% 33-35, 39
@@ -178,7 +178,7 @@ Coverage status for each line of source is indicated with a character prefix::
For example::
# A simple function, never called with x==1
-
+
> def h(x):
"""Silly function."""
- if 0: #pragma: no cover
@@ -187,7 +187,7 @@ For example::
! a = 1
> else:
> a = 2
-
+
XML reporting
-------------