diff options
Diffstat (limited to 'coverage/collector.py')
-rw-r--r-- | coverage/collector.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/coverage/collector.py b/coverage/collector.py index a6910b1..6a2caf8 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: |