summaryrefslogtreecommitdiff
path: root/coverage/collector.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/collector.py')
-rw-r--r--coverage/collector.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/coverage/collector.py b/coverage/collector.py
index a6910b1f..6a2caf86 100644
--- a/coverage/collector.py
+++ b/coverage/collector.py
@@ -133,9 +133,8 @@ class Collector(object):
self.should_trace = should_trace
self.branch = branch
self.reset()
- if branch: # TODO: For now use PyTracer for branch, so we can wait to update the C code.
- self._trace_class = PyTracer
- elif timid:
+
+ if timid:
# Being timid: use the simple Python trace function.
self._trace_class = PyTracer
else: