mirror of
https://github.com/python/cpython.git
synced 2025-09-22 08:23:36 +00:00
Issue #11784: Improve multiprocessing.Process.join() documentation. Patch by
Patrick Sabin.
This commit is contained in:
parent
432171c687
commit
acd9f7ce32
2 changed files with 4 additions and 4 deletions
|
@ -343,10 +343,9 @@ The :mod:`multiprocessing` package mostly replicates the API of the
|
||||||
|
|
||||||
.. method:: join([timeout])
|
.. method:: join([timeout])
|
||||||
|
|
||||||
Block the calling thread until the process whose :meth:`join` method is
|
If the optional argument *timeout* is ``None`` (the default), the method
|
||||||
called terminates or until the optional timeout occurs.
|
blocks until the process whose :meth:`join` method is called terminates.
|
||||||
|
If *timeout* is a positive number, it blocks at most *timeout* seconds.
|
||||||
If *timeout* is ``None`` then there is no timeout.
|
|
||||||
|
|
||||||
A process can be joined many times.
|
A process can be joined many times.
|
||||||
|
|
||||||
|
|
|
@ -820,6 +820,7 @@ Jeff Rush
|
||||||
Sam Rushing
|
Sam Rushing
|
||||||
Mark Russell
|
Mark Russell
|
||||||
Nick Russo
|
Nick Russo
|
||||||
|
Patrick Sabin
|
||||||
Sébastien Sablé
|
Sébastien Sablé
|
||||||
Hajime Saitou
|
Hajime Saitou
|
||||||
George Sakkis
|
George Sakkis
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue