diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-27 08:56:44 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-27 08:56:44 -0400 |
commit | 12a7c074a2109e63c348dce107470bc2371b0a2e (patch) | |
tree | dc3a81741960b820bdd9bc42f325ae687f2121b9 /coverage/control.py | |
parent | ca6e49360be1b7d25b0ff4c11473063ffc05f1e7 (diff) | |
parent | 92cea9cf6b36f9d60217a4162e3ce40e5f69cbd8 (diff) | |
download | python-coveragepy-git-12a7c074a2109e63c348dce107470bc2371b0a2e.tar.gz |
Merge trunk
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/coverage/control.py b/coverage/control.py index ef1a6205..f9d23066 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -186,11 +186,11 @@ class coverage: `morf` is a module or a filename. It will be analyzed to determine its coverage statistics. The return value is a 5-tuple: - * The filename for the module. - * A list of line numbers of executable statements. - * A list of line numbers of excluded statements. - * A list of line numbers of statements not run (missing from execution). - * A readable formatted string of the missing line numbers. + * The filename for the module. + * A list of line numbers of executable statements. + * A list of line numbers of excluded statements. + * A list of line numbers of statements not run (missing from execution). + * A readable formatted string of the missing line numbers. The analysis uses the source file itself and the current measured coverage data. |