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 | 9571dd02e0638f6f5443a1fd67c9ba6bfb53af78 (patch) | |
tree | 858c3b3abae2007cdcb754f2917d8cf726f2b770 /coverage/control.py | |
parent | aea3ae04da5b74f5a7cbe1a39117c15c7b4f3886 (diff) | |
download | python-coveragepy-9571dd02e0638f6f5443a1fd67c9ba6bfb53af78.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 8650dbc..1b21c3b 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): |