summaryrefslogtreecommitdiff
path: root/doc/excluding.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/excluding.rst
parent007a4a1ba529e2913357387c1f42b6028860fe98 (diff)
downloadpython-coveragepy-git-968fc008e4c0453ef05aa211e85e202e7b1d2342.tar.gz
Massive eol whitespace clean-up.
Diffstat (limited to 'doc/excluding.rst')
-rw-r--r--doc/excluding.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/excluding.rst b/doc/excluding.rst
index 1333f5c2..1b91fc9a 100644
--- a/doc/excluding.rst
+++ b/doc/excluding.rst
@@ -30,7 +30,7 @@ function is not reported as missing::
def __init__(self):
blah1()
blah2()
-
+
def __repr__(self): # pragma: no cover
return "<MyObject>"
@@ -71,7 +71,7 @@ in debugging code, and are uninteresting to test themselves. You could exclude
all of them by adding a regex to the exclusion list::
coverage.exclude('def __repr__')
-
+
Here's a list of exclusions I've used::
coverage.exclude('def __repr__')