diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-03-13 18:40:41 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-03-13 18:40:41 -0400 |
commit | 7c8b42021a0e2d14ff250f0f74ea9b857fc84d02 (patch) | |
tree | ba32aa0404cef527f1212aed036c4da3dac8f6c4 | |
parent | cd57713fbccddfc7e375c43165159642236969fd (diff) | |
download | python-coveragepy-git-7c8b42021a0e2d14ff250f0f74ea9b857fc84d02.tar.gz |
Remove multiprocessing from the trouble.rst list.
-rw-r--r-- | doc/trouble.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/doc/trouble.rst b/doc/trouble.rst index bfdf12bb..c54ab68b 100644 --- a/doc/trouble.rst +++ b/doc/trouble.rst @@ -34,10 +34,6 @@ coverage.py from working properly: program that calls execv will not be fully measured. A patch for coverage.py is in `issue 43`_. -* `multiprocessing`_ launches processes to provide parallelism. These - processes don't get measured by coverage.py. Some possible fixes are - discussed or linked to in `issue 117`_. - * `thread`_, in the Python standard library, is the low-level threading interface. Threads created with this module will not be traced. Use the higher-level `threading`_ module instead. @@ -48,12 +44,10 @@ coverage.py from working properly: measured properly. .. _execv: http://docs.python.org/library/os#os.execl -.. _multiprocessing: http://docs.python.org/library/multiprocessing.html .. _sys.settrace: http://docs.python.org/library/sys.html#sys.settrace .. _thread: http://docs.python.org/library/thread.html .. _threading: http://docs.python.org/library/threading.html .. _issue 43: https://bitbucket.org/ned/coveragepy/issue/43/coverage-measurement-fails-on-code -.. _issue 117: https://bitbucket.org/ned/coveragepy/issue/117/enable-coverage-measurement-of-code-run-by Things that require --timid |