Kaydet (Commit) acd9f7ce authored tarafından Charles-François Natali's avatar Charles-François Natali

Issue #11784: Improve multiprocessing.Process.join() documentation. Patch by

Patrick Sabin.
üst 432171c6
......@@ -343,10 +343,9 @@ The :mod:`multiprocessing` package mostly replicates the API of the
.. method:: join([timeout])
Block the calling thread until the process whose :meth:`join` method is
called terminates or until the optional timeout occurs.
If *timeout* is ``None`` then there is no timeout.
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.
......
......@@ -820,6 +820,7 @@ Jeff Rush
Sam Rushing
Mark Russell
Nick Russo
Patrick Sabin
Sébastien Sablé
Hajime Saitou
George Sakkis
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment