From 9571dd02e0638f6f5443a1fd67c9ba6bfb53af78 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 8 Feb 2015 17:26:03 -0500 Subject: Plugin support is in C tracer as well as Python tracer --- coverage/control.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'coverage/control.py') 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): -- cgit v1.2.1