diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-19 16:03:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 16:03:55 (GMT) |
commit | a43f4e7487e5546bc798580c4754a93bbdf79712 (patch) | |
tree | ce080e4711a44ba90b4bbad55d6615153ac80169 /Doc/library/multiprocessing.rst | |
parent | 9f7cdb2cf70d8b6ed95715317e5e98f0cca8fed6 (diff) | |
download | cpython-a43f4e7487e5546bc798580c4754a93bbdf79712.zip cpython-a43f4e7487e5546bc798580c4754a93bbdf79712.tar.gz cpython-a43f4e7487e5546bc798580c4754a93bbdf79712.tar.bz2 |
bpo-46879: Fix incorrect sphinx object names in doc (GH-31615) (GH-92976)
(cherry picked from commit 2cdd57f119e3b85f1bfd28c7ff040e0d9bcaf115)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Co-authored-by: Martin Fischer <martin@push-f.com>
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r-- | Doc/library/multiprocessing.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index b62e1f8..1bde2ec 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1648,6 +1648,7 @@ different machines. A manager object controls a server process which manages proxies. .. function:: multiprocessing.Manager() + :module: Returns a started :class:`~multiprocessing.managers.SyncManager` object which can be used for sharing objects between processes. The returned manager |