From: Richard Oudkerk Date: Mon, 24 Jun 2013 14:41:36 +0000 (+0100) Subject: Issue #15818: Typo in docs. X-Git-Tag: v2.7.6rc1~336 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=acfbe220686583b7193b35a421d55c4cc283ba3a;p=thirdparty%2FPython%2Fcpython.git Issue #15818: Typo in docs. --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 8904cc36474c..a7dd0b801bbf 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -423,9 +423,9 @@ The :mod:`multiprocessing` package mostly replicates the API of the acquired a lock or semaphore etc. then terminating it is liable to cause other processes to deadlock. - Note that the :meth:`start`, :meth:`join`, :meth:`is_alive` and - :attr:`exit_code` methods should only be called by the process that created - the process object. + Note that the :meth:`start`, :meth:`join`, :meth:`is_alive`, + :meth:`terminate` and :attr:`exitcode` methods should only be called by + the process that created the process object. Example usage of some of the methods of :class:`Process`: