diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-08 17:26:03 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-08 17:26:03 -0500 |
commit | f22c360d62956a83d347c2a2161bba98d4c2bd4b (patch) | |
tree | 9c3d7e58c205ddf8075f0596bd47d5f1ba576c7d /coverage/control.py | |
parent | 252b90a8c232c6c2691869f0dcd4f9e00c7b1aac (diff) | |
download | python-coveragepy-git-f22c360d62956a83d347c2a2161bba98d4c2bd4b.tar.gz |
Plugin support is in C tracer as well as Python tracer
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/coverage/control.py b/coverage/control.py index 8650dbcb..1b21c3bd 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -189,12 +189,6 @@ class Coverage(object): # Load plugins self.plugins = Plugins.load_plugins(self.config.plugins, self.config) - # TEMPORARY, because the plugin support is implemented in PyTracer. - # This will be removed when that support is moved into CTracer. - if self.plugins: - self._warn("Setting timid=True to support plugins.") - self.config.timid = True - self.file_tracers = [] for plugin in self.plugins: if overrides(plugin, "file_tracer", CoveragePlugin): |