summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Diederich <jackdied@gmail.com>2010-02-22 18:17:16 (GMT)
committerJack Diederich <jackdied@gmail.com>2010-02-22 18:17:16 (GMT)
commit8f48f4c5f6372f4778c04f3246370ecb6caa991f (patch)
tree0428f31466109c79fe83079db0215f598a282e11
parent83fddec8bd2a9a2f57d3faeee3543368c548331f (diff)
downloadcpython-8f48f4c5f6372f4778c04f3246370ecb6caa991f.zip
cpython-8f48f4c5f6372f4778c04f3246370ecb6caa991f.tar.gz
cpython-8f48f4c5f6372f4778c04f3246370ecb6caa991f.tar.bz2
fixes issue #7530, serve_forever()
-rw-r--r--Doc/library/multiprocessing.rst6
1 files changed, 1 insertions, 5 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 7404145..92e38b2 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1133,7 +1133,7 @@ their parent process exits. The manager classes are defined in the
Create a BaseManager object.
- Once created one should call :meth:`start` or :meth:`serve_forever` to ensure
+ Once created one should call :meth:`start` or ```get_server().serve_forever()`` to ensure
that the manager object refers to a started manager process.
*address* is the address on which the manager process listens for new
@@ -1149,10 +1149,6 @@ their parent process exits. The manager classes are defined in the
Start a subprocess to start the manager. If *initializer* is not ``None``
then the subprocess will call ``initializer(*initargs)`` when it starts.
- .. method:: serve_forever()
-
- Run the server in the current process.
-
.. method:: get_server()
Returns a :class:`Server` object which represents the actual server under