diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-28 23:35:32 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-28 23:35:32 -0400 |
commit | 89d2c9dc416949ca9e3181f8367de1e5dd8e3fde (patch) | |
tree | c475e7acd44e71d807b5d769a06b88c75a1882ab /coverage/control.py | |
parent | 5328c3d2df57e1c6960bc443d94a3c086b1d1b42 (diff) | |
download | python-coveragepy-89d2c9dc416949ca9e3181f8367de1e5dd8e3fde.tar.gz |
Typo in last docstring.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py index 2ca4344..d03c69b 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -78,7 +78,7 @@ class coverage: def exclude(self, regex): """Exclude source lines from execution consideration. - `regex` is a regular expression. Lines matching this expressions are + `regex` is a regular expression. Lines matching this expression are not considered executable when reporting code coverage. A list of regexes is maintained; this function adds a new regex to the list. Matching any of the regexes excludes a source line. |