diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-11 19:31:29 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-11 19:31:29 -0400 |
commit | 7e766b953c2422cccb212f346687dea39d676746 (patch) | |
tree | 38fcc57e5340788a6f63b5b2fa846a5a0af46327 /coverage/data.py | |
parent | a2742dd17a0536eddba983e6716a4931ce0d9fe0 (diff) | |
download | python-coveragepy-7e766b953c2422cccb212f346687dea39d676746.tar.gz |
Include CoverageData in the docs
Diffstat (limited to 'coverage/data.py')
-rw-r--r-- | coverage/data.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/coverage/data.py b/coverage/data.py index 945875c..197dbd3 100644 --- a/coverage/data.py +++ b/coverage/data.py @@ -16,13 +16,16 @@ class CoverageData(object): * collector: a string identifying the collecting software * lines: a dict mapping filenames to sorted lists of line numbers - executed: - { 'file1': [17,23,45], 'file2': [1,2,3], ... } + executed:: + + { 'file1': [17,23,45], 'file2': [1,2,3], ... } + + * arcs: a dict mapping filenames to sorted lists of line number pairs:: - * arcs: a dict mapping filenames to sorted lists of line number pairs: { 'file1': [(17,23), (17,25), (25,26)], ... } - * plugins: a dict mapping filenames to plugin names: + * plugins: a dict mapping filenames to plugin names:: + { 'file1': "django.coverage", ... } """ |