diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-03-11 14:15:17 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-03-11 14:15:17 -0500 |
commit | 7c047ac7b2a1ed797bd959d268fe7d25044ca9b3 (patch) | |
tree | 4f4c9c87d737e2467b7e1b0a1c8ab2df099eca4d /coverage/collector.py | |
parent | 1993287b762daf89afd4a9c626f6a49e95db3b1f (diff) | |
download | python-coveragepy-git-7c047ac7b2a1ed797bd959d268fe7d25044ca9b3.tar.gz |
Cleanly stop coverage objects, for metacov
Without these cov.stop() calls, the collector stack is wrong when doing
meta-coverage.
Diffstat (limited to 'coverage/collector.py')
-rw-r--r-- | coverage/collector.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/collector.py b/coverage/collector.py index 1c8c83b5..cfdcf402 100644 --- a/coverage/collector.py +++ b/coverage/collector.py @@ -307,7 +307,7 @@ class Collector(object): except TypeError: raise Exception("fullcoverage must be run with the C trace function.") - # Install our installation tracer in threading, to jump start other + # Install our installation tracer in threading, to jump-start other # threads. if self.threading: self.threading.settrace(self._installation_trace) |