[Python-checkins] r78328 - python/trunk/Doc/library/multiprocessing.rst

jack.diederich python-checkins at python.org
Mon Feb 22 19:17:16 CET 2010


Author: jack.diederich
Date: Mon Feb 22 19:17:16 2010
New Revision: 78328

Log:
fixes issue #7530, serve_forever()

Modified:
   python/trunk/Doc/library/multiprocessing.rst

Modified: python/trunk/Doc/library/multiprocessing.rst
==============================================================================
--- python/trunk/Doc/library/multiprocessing.rst	(original)
+++ python/trunk/Doc/library/multiprocessing.rst	Mon Feb 22 19:17:16 2010
@@ -1133,7 +1133,7 @@
 
    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 @@
       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


More information about the Python-checkins mailing list