summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-05-27 08:15:56 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-05-27 08:15:56 -0400
commit92cea9cf6b36f9d60217a4162e3ce40e5f69cbd8 (patch)
treeac82d1327b7397aea0c7f059adbfab670b19f9b4 /coverage/control.py
parente602eb471d75a6f48e657f31da9aa9f0642d70d0 (diff)
downloadpython-coveragepy-git-92cea9cf6b36f9d60217a4162e3ce40e5f69cbd8.tar.gz
Fix the formatting of a docstring.
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py10
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.