summaryrefslogtreecommitdiff
path: root/doc/excluding.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-09-13 09:14:39 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-09-13 09:14:39 -0400
commit38b5b2f6e3b152f4073fee90e5684cf890184660 (patch)
tree3edde069715e1084ca55372452445e87a70287a5 /doc/excluding.rst
parent5979544c1cf0115c11555239d1da20add04c34ec (diff)
downloadpython-coveragepy-git-38b5b2f6e3b152f4073fee90e5684cf890184660.tar.gz
Docs updated for the new command-line syntax.
Diffstat (limited to 'doc/excluding.rst')
-rw-r--r--doc/excluding.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/excluding.rst b/doc/excluding.rst
index d336813b..0dfee514 100644
--- a/doc/excluding.rst
+++ b/doc/excluding.rst
@@ -20,7 +20,7 @@ the "if debug" clause is excluded from reporting::
msg = "blah blah"
log_message(msg, a)
b = my_function2()
-
+
Any line with a comment of "pragma: no cover" is excluded. If that line
introduces a clause, for example, an if clause, or a function or class
definition, then the entire clause is also excluded. Here the __repr__