diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-27 08:15:56 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-27 08:15:56 -0400 |
commit | 905a5c29d6baa1f08bc6ca54c99a731eafb34726 (patch) | |
tree | dd93656f500ef3c4cf37219141f0c63802e2cfaa /coverage/control.py | |
parent | bfb08107cf464a7dbdad420be67d998b4444c447 (diff) | |
download | python-coveragepy-905a5c29d6baa1f08bc6ca54c99a731eafb34726.tar.gz |
Fix the formatting of a docstring.
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 ef1a620..f9d2306 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. |