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 | b135a5563e9a4c73543aeb08700128242ddf1998 (patch) | |
tree | 34376f79c5a8772793caabaff6d72e2a0d266fa6 /coverage/control.py | |
parent | a9769865ce238c67676530989afcb91cd365dcba (diff) | |
download | python-coveragepy-b135a5563e9a4c73543aeb08700128242ddf1998.tar.gz |
Tweak some docstrings.
Diffstat (limited to 'coverage/control.py')
-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 0510e77..3861cc1 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() |