summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-02-11 06:29:00 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-02-11 06:29:00 -0500
commit9047a7742ad67bb36440299c2ef1e48ee7108c20 (patch)
tree6615aa9c233a47cea668a50f388ea3ac4e61da2e /coverage/control.py
parent1f4a1a92d1c6f7d72d17b2572c4c943abecd2f72 (diff)
downloadpython-coveragepy-git-9047a7742ad67bb36440299c2ef1e48ee7108c20.tar.gz
multiprocessing has been a valid choice for a while
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 0a5ccae6..e15b5a40 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.