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 | bee4695b9dd3ac9aee5d2dc2746a49a37aae0742 (patch) | |
tree | 6d062b7fbd51f987fac3f9e7170dbae26da5fd95 /coverage/collector.py | |
parent | 7b5457967f256696d3b6c936e81436aa60b4b409 (diff) | |
download | python-coveragepy-git-bee4695b9dd3ac9aee5d2dc2746a49a37aae0742.tar.gz |
Some error checking and more tests for concurrency control.
Diffstat (limited to 'coverage/collector.py')
-rw-r--r-- | coverage/collector.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/coverage/collector.py b/coverage/collector.py index 07318240..9c6288cd 100644 --- a/coverage/collector.py +++ b/coverage/collector.py @@ -68,7 +68,9 @@ class Collector(object): `warn` is a warning function, taking a single string message argument, to be used if a warning needs to be issued. - TODO: `concurrency` + `concurrency` is a string indicating the concurrency library in use. + Valid values are "greenlet", "eventlet", "gevent", or "thread" (the + default). """ self.should_trace = should_trace |