cpython: 112060f8abe8 (original) (raw)

Mercurial > cpython

changeset 104083:112060f8abe8 3.5

Issue #10673: Document that Process.exitcode can be used to determine timeout Patch by Tom Clark. [#10673]

Berker Peksag berker.peksag@gmail.com
date Mon, 26 Sep 2016 23:22:22 +0300
parents e9f34d382eda
children 0414ce8a3b5c c739660489c1
files Doc/library/multiprocessing.rst
diffstat 1 files changed, 3 insertions(+), 0 deletions(-)[+] [-] Doc/library/multiprocessing.rst 3

line wrap: on

line diff

--- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -496,6 +496,9 @@ The :mod:multiprocessing package mostl If the optional argument timeout is None (the default), the method blocks until the process whose :meth:join method is called terminates. If timeout is a positive number, it blocks at most timeout seconds.

A process can be joined many times.