diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-27 18:00:26 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-27 18:00:26 -0500 |
| commit | 7537d098950ad231991bbaabbe2bddca8cd024c7 (patch) | |
| tree | 66d92b2c1247053a99ab64c380f3a5e212f05984 /doc/excluding.rst | |
| parent | a6134bd63c0dbc0d6111f779cdf247fa85d6181d (diff) | |
| download | python-coveragepy-git-7537d098950ad231991bbaabbe2bddca8cd024c7.tar.gz | |
Doc tweaks.
Diffstat (limited to 'doc/excluding.rst')
| -rw-r--r-- | doc/excluding.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/excluding.rst b/doc/excluding.rst index 0dfee514..1072e5b1 100644 --- a/doc/excluding.rst +++ b/doc/excluding.rst @@ -52,7 +52,7 @@ For example, you might decide that __repr__ functions are usually only used 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__") + coverage.exclude('def __repr__') Here's a list of exclusions I've used:: |
