[Python-checkins] cpython (2.7): Issue #15818: Typo in docs.

richard.oudkerk python-checkins at python.org
Mon Jun 24 16:44:41 CEST 2013


http://hg.python.org/cpython/rev/f50bbae95bc8
changeset:   84310:f50bbae95bc8
branch:      2.7
parent:      84307:8dcc4e017d42
user:        Richard Oudkerk <shibturn at gmail.com>
date:        Mon Jun 24 15:41:36 2013 +0100
summary:
  Issue #15818: Typo in docs.

files:
  Doc/library/multiprocessing.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -423,9 +423,9 @@
          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`:
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list