summaryrefslogtreecommitdiff
path: root/coverage/plugin.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-07-05 11:21:26 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-07-05 11:21:26 -0400
commitcb8b5b581571cdeacae82376e0e571895e2c76a9 (patch)
treea3f19b97698925f1b75a5936abef10048c8baaca /coverage/plugin.py
parenta9afb77456c4e658c25cb5f76abe611d1777cd8e (diff)
downloadpython-coveragepy-git-cb8b5b581571cdeacae82376e0e571895e2c76a9.tar.gz
Constructing the plugin is the plugin's business
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r--coverage/plugin.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py
index 678d297a..44dab55f 100644
--- a/coverage/plugin.py
+++ b/coverage/plugin.py
@@ -27,19 +27,6 @@ class CoveragePlugin(object):
"""
- def __init__(self, options=None):
- """
- When the plugin is constructed, it will be passed a dictionary of
- plugin-specific options read from the .coveragerc configuration file.
- The base class stores these on the `self.options` attribute.
-
- Arguments:
- options (dict): The plugin-specific options read from the
- .coveragerc configuration file.
-
- """
- self.options = options or {}
-
def file_tracer(self, filename): # pylint: disable=unused-argument
"""Return a FileTracer object for a file.