diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2014-02-15 14:58:52 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2014-02-15 14:58:52 (GMT) |
commit | e426b71789c1431da6905eb8917a9050a7e5911a (patch) | |
tree | 9907649c32b75437353a6a23ba3fdba4c6932ac8 | |
parent | f4e998364e4f9dd7f3ec4cd64aaac01a68c62ff4 (diff) | |
download | cpython-e426b71789c1431da6905eb8917a9050a7e5911a.zip cpython-e426b71789c1431da6905eb8917a9050a7e5911a.tar.gz cpython-e426b71789c1431da6905eb8917a9050a7e5911a.tar.bz2 |
#19890: fix typo in multiprocessing docs. Patch by Mike Short.
-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 3d1c209..5f50cf1 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1306,7 +1306,7 @@ their parent process exits. The manager classes are defined in the *exposed* is used to specify a sequence of method names which proxies for this typeid should be allowed to access using - :meth:`BaseProxy._callMethod`. (If *exposed* is ``None`` then + :meth:`BaseProxy._callmethod`. (If *exposed* is ``None`` then :attr:`proxytype._exposed_` is used instead if it exists.) In the case where no exposed list is specified, all "public methods" of the shared object will be accessible. (Here a "public method" means any attribute |