]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #15818: Typo in docs.
authorRichard Oudkerk <shibturn@gmail.com>
Mon, 24 Jun 2013 14:41:36 +0000 (15:41 +0100)
committerRichard Oudkerk <shibturn@gmail.com>
Mon, 24 Jun 2013 14:41:36 +0000 (15:41 +0100)
Doc/library/multiprocessing.rst

index 8904cc36474cb5b382c543c9b36e18eaa3dbac1d..a7dd0b801bbf94bf1e6b85e549c84e9c84aca44d 100644 (file)
@@ -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`: