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.

classification
Title: doc of multiprocessing.managers is wrong (server_forever)
Type: behavior Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: jnoller Nosy List: eric.araujo, georg.brandl, jackdied, jnoller, schwarz
Priority: normal Keywords:

Created on 2009-12-17 12:40 by schwarz, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg96512 - (view) Author: Stefan Schwarzburg (schwarz) Date: 2009-12-17 12:40
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().
msg99799 - (view) Author: Jack Diederich (jackdied) * (Python committer) Date: 2010-02-22 18:18
applied in r78328
msg99932 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-02-23 16:52
Hello

There is a typo in the changed text that prevents correct reST interpretation. s/```/``/ would fix it.

Regards
msg99937 - (view) Author: Jack Diederich (jackdied) * (Python committer) Date: 2010-02-23 17:23
thanks, fixed.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51779
2010-02-23 17:23:56jackdiedsetmessages: + msg99937
2010-02-23 16:52:04eric.araujosetnosy: + eric.araujo
messages: + msg99932
2010-02-22 18:18:10jackdiedsetstatus: open -> closed

nosy: + jackdied
messages: + msg99799

resolution: accepted
2009-12-28 08:27:49georg.brandlsetassignee: georg.brandl -> jnoller
2009-12-17 13:13:27r.david.murraysetnosy: + jnoller
2009-12-17 12:40:47schwarzcreate