diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-25 06:40:09 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-25 06:40:09 -0400 |
commit | fe9ea16b667d2a89d94f09b52c58b54e209874c2 (patch) | |
tree | 10c82eec6405690ce91bd8c9636c30522ebb74eb /coverage/control.py | |
parent | ea3b37c5b62d835ab301d7f35da72d3e4b2f3292 (diff) | |
download | python-coveragepy-fe9ea16b667d2a89d94f09b52c58b54e209874c2.tar.gz |
Some error checking and more tests for concurrency control.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py index 510ced7..cc1ad36 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -86,8 +86,8 @@ class Coverage(object): `concurrency` is a string indicating the concurrency library being used in the measured code. Without this, coverage.py will get incorrect - results. Valid strings are "greenlet", "eventlet", or "gevent", which - are all equivalent. TODO: really? + results. Valid strings are "greenlet", "eventlet", "gevent", or + "thread" (the default). `plugins` TODO. |