summaryrefslogtreecommitdiff
path: root/coverage
diff options
context:
space:
mode:
Diffstat (limited to 'coverage')
-rw-r--r--coverage/cmdline.py2
-rw-r--r--coverage/control.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py
index 11bc5d99..cdcde451 100644
--- a/coverage/cmdline.py
+++ b/coverage/cmdline.py
@@ -33,7 +33,7 @@ class Opts(object):
)
keep = optparse.make_option(
'', '--keep', action='store_true',
- help="Keep combined coverage files, otherwise they are deleted.",
+ help="Keep original coverage files, otherwise they are deleted.",
)
branch = optparse.make_option(
'', '--branch', action='store_true',
diff --git a/coverage/control.py b/coverage/control.py
index c952afcd..358e4a97 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -674,7 +674,7 @@ class Coverage(object):
If `strict` is true, then it is an error to attempt to combine when
there are no data files to combine.
- If `keep` is true, then combined data files won't be deleted.
+ If `keep` is true, then original input data files won't be deleted.
.. versionadded:: 4.0
The `data_paths` parameter.
@@ -682,6 +682,8 @@ class Coverage(object):
.. versionadded:: 4.3
The `strict` parameter.
+ .. versionadded: 5.5
+ The `keep` parameter.
"""
self._init()
self._init_data(suffix=None)