diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-03 14:00:37 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-03 14:00:37 -0400 |
commit | 94287179f87bb02dbf4c189ad52f7416b4dc83f1 (patch) | |
tree | c68e93ef4341551146035153e8182aa0abd420bd /coverage/data.py | |
parent | 17b2aef45c916bc6b50ed0ea6a6ed405178118f1 (diff) | |
download | python-coveragepy-94287179f87bb02dbf4c189ad52f7416b4dc83f1.tar.gz |
Add some docstrings
Diffstat (limited to 'coverage/data.py')
-rw-r--r-- | coverage/data.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coverage/data.py b/coverage/data.py index 22b711d..59ebae2 100644 --- a/coverage/data.py +++ b/coverage/data.py @@ -24,8 +24,6 @@ class CoverageData(object): * plugins: a dict mapping filenames to plugin names: { 'file1': "django.coverage", ... } - # TODO: how to handle the difference between a plugin module - # name, and the class in the module? """ @@ -126,6 +124,7 @@ class CoverageData(object): ) def plugin_data(self): + """Return the map from filenames to plugin names.""" return self.plugins def write_file(self, filename): |