This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author schwarz
Recipients georg.brandl, schwarz
Date 2009-12-17.12:40:47
SpamBayes Score 0.0013351542
Marked as misclassified No
Message-id <1261053649.05.0.856911963743.issue7530@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation of multiprocessing.managers.BaseManager 
(http://docs.python.org/library/multiprocessing.html#module-multiprocessing.managers)
refers to a method "serve_forever". This method is only available at the
server object inside BaseManager (e.g.
manager.get_server().serve_forever() ).

I would rephrase the text to:
"Once created one should call start() or get_server().serve_forever()" 

instead of the current phrase:
"Once created one should call start() or serve_forever()" 

The method description for "serve_forever()" should be removed from
BaseManager, instead there should be an additional section about the
server object returned by get_server().
History
Date User Action Args
2009-12-17 12:40:49schwarzsetrecipients: + schwarz, georg.brandl
2009-12-17 12:40:49schwarzsetmessageid: <1261053649.05.0.856911963743.issue7530@psf.upfronthosting.co.za>
2009-12-17 12:40:47schwarzlinkissue7530 messages
2009-12-17 12:40:47schwarzcreate