summaryrefslogtreecommitdiff
path: root/doc/config.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-07-04 08:20:11 -0400
committerNed Batchelder <ned@nedbatchelder.com>2016-07-04 08:20:11 -0400
commite7fdd272fe8780230ef3aee9910324a932ab1d43 (patch)
treec7898b5f8e220598b962ed04f5d56ba3f08b4f8b /doc/config.rst
parentffe481b845ef14289f6920cd2a5b7928e6c78d6a (diff)
downloadpython-coveragepy-e7fdd272fe8780230ef3aee9910324a932ab1d43.tar.gz
Let the concurrency option be multi-valued. #484
Diffstat (limited to 'doc/config.rst')
-rw-r--r--doc/config.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/config.rst b/doc/config.rst
index 7c1aeb2..b149f4f 100644
--- a/doc/config.rst
+++ b/doc/config.rst
@@ -107,8 +107,8 @@ to more than one command.
``cover_pylib`` (boolean, default False): whether to measure the Python
standard library.
-``concurrency`` (string, default "thread"): the name of the concurrency library
-in use by the product code. If your program uses `multiprocessing`_,
+``concurrency`` (multi-string, default "thread"): the name concurrency
+libraries in use by the product code. If your program uses `multiprocessing`_,
`gevent`_, `greenlet`_, or `eventlet`_, you must name that library in this
option, or coverage.py will produce very wrong results.
@@ -117,6 +117,8 @@ option, or coverage.py will produce very wrong results.
.. _gevent: http://www.gevent.org/
.. _eventlet: http://eventlet.net/
+Before version 4.2, this option only accepted a single string.
+
.. versionadded:: 4.0
``data_file`` (string, default ".coverage"): the name of the data file to use