diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-26 15:53:22 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-26 15:53:22 -0400 |
commit | 4842b9920792ff74bdefcfc8ad799b31baa7ddc0 (patch) | |
tree | e7bbe46b1ef111589fb5eb5b9f531d85559bf131 | |
parent | 2b844b45cce89e0373eefbba5d929f5991b35190 (diff) | |
download | python-coveragepy-git-4842b9920792ff74bdefcfc8ad799b31baa7ddc0.tar.gz |
Tweak some docstrings.
-rw-r--r-- | coverage/control.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/coverage/control.py b/coverage/control.py index 0510e774..3861cc19 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -46,10 +46,9 @@ class coverage(object): coverage measurement starts, and data will be saved automatically when measurement stops. - If `timid` is true, then a slower simpler trace function will be + If `timid` is true, then a slower and simpler trace function will be used. This is important for some environments where manipulation of - tracing functions make the faster more sophisticated trace function not - operate properly. + tracing functions breaks the faster trace function. TODO: `branch`. @@ -219,7 +218,7 @@ class coverage(object): self.data.combine_parallel_data() def _harvest_data(self): - """Get the collected data by filename and reset the collector.""" + """Get the collected data and reset the collector.""" self.data.add_line_data(self.collector.get_line_data()) self.data.add_arc_data(self.collector.get_arc_data()) self.collector.reset() |