
report at bugs
Dec 17, 2009, 4:40 AM
Post #1 of 3
(207 views)
Permalink
|
|
[issue7530] doc of multiprocessing.managers is wrong (server_forever)
|
|
New submission from Stefan Schwarzburg <stefan.schwarzburg [at] googlemail>: 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(). ---------- assignee: georg.brandl components: Documentation messages: 96512 nosy: georg.brandl, schwarz severity: normal status: open title: doc of multiprocessing.managers is wrong (server_forever) type: behavior versions: Python 2.6 _______________________________________ Python tracker <report [at] bugs> <http://bugs.python.org/issue7530> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com
|