diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-11 06:29:00 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-11 06:29:00 -0500 |
commit | 1c38106236a2c75cb2e3bb072e402af218408081 (patch) | |
tree | 92293a3ff975aea093bf1be8b44261d9ebdf8c6e /coverage/control.py | |
parent | cbf8be9e8a46bcd2bea16de427e9075458009c8a (diff) | |
download | python-coveragepy-1c38106236a2c75cb2e3bb072e402af218408081.tar.gz |
multiprocessing has been a valid choice for a while
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 0a5ccae..e15b5a4 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -110,8 +110,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", "gevent", or - "thread" (the default). + results. Valid strings are "greenlet", "eventlet", "gevent", + "multiprocessing", or "thread" (the default). .. versionadded:: 4.0 The `concurrency` parameter. |