diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2013-06-24 14:43:35 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2013-06-24 14:43:35 (GMT) |
commit | 71e7dbd11dbff8343b3f35faf896c16bce480a68 (patch) | |
tree | 2b7b052ad760ff6f8084e97e35b2c9e7ca57fdb0 /Doc/library | |
parent | 35d05537fc260d73ec82b5587773f1b0f3d429b7 (diff) | |
parent | 64c25b4282219a1589275bf884b3cb6ffbed14c7 (diff) | |
download | cpython-71e7dbd11dbff8343b3f35faf896c16bce480a68.zip cpython-71e7dbd11dbff8343b3f35faf896c16bce480a68.tar.gz cpython-71e7dbd11dbff8343b3f35faf896c16bce480a68.tar.bz2 |
Issue #15818: Merge.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index e9fdfd2..0185d20 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -443,7 +443,7 @@ The :mod:`multiprocessing` package mostly replicates the API of the cause other processes to deadlock. Note that the :meth:`start`, :meth:`join`, :meth:`is_alive`, - :meth:`terminate` and :attr:`exit_code` methods should only be called by + :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`: |