diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-24 23:15:19 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-24 23:15:19 (GMT) |
commit | 971f10210ef593cd620af6c2178ed8265fb86946 (patch) | |
tree | 606b489cb176fd5670d7cee2458c07d58ee98d25 | |
parent | 901e4715bd50bd96469c7fea8c9ed22e61ff6028 (diff) | |
download | cpython-971f10210ef593cd620af6c2178ed8265fb86946.zip cpython-971f10210ef593cd620af6c2178ed8265fb86946.tar.gz cpython-971f10210ef593cd620af6c2178ed8265fb86946.tar.bz2 |
Clarify that some attributes/methods are listed somewhat separately because they are not part of the threading API.
-rw-r--r-- | Doc/library/multiprocessing.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index ea04d4d..f973715 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -321,7 +321,8 @@ The :mod:`multiprocessing` package mostly replicates the API of the Otherwise a daemonic process would leave its children orphaned if it gets terminated when its parent process exits. - In addition process objects also support the following methods: + In addition to the :class:`Threading.Thread` API, :class:`Process` objects + also support the following attributes and methods: .. attribute:: pid |