[issue6031] BaseServer.shutdown documentation is incomplete

2012-01-03 Thread Sandro Tosi
Sandro Tosi added the comment: yep indeed, I've removed the deadlock part and committed. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.3 -Python 3.1 ___ Python tracker

[issue6031] BaseServer.shutdown documentation is incomplete

2012-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4fad6b811c8b by Sandro Tosi in branch '2.7': Issue #6031: improve serve_forever() description http://hg.python.org/cpython/rev/4fad6b811c8b New changeset 4a30d36a9c69 by Sandro Tosi in branch '3.2': Issue #6031: improve serve_forever() description

[issue6031] BaseServer.shutdown documentation is incomplete

2010-09-28 Thread R. David Murray
Changes by R. David Murray : -- versions: -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue6031] BaseServer.shutdown documentation is incomplete

2010-09-28 Thread R. David Murray
R. David Murray added the comment: Hmm. It seems as though since issue 2302 is now closed, the comment about deadlocking if called before serve_forever may no longer be true. Gabriel? -- nosy: +r.david.murray ___ Python tracker

[issue6031] BaseServer.shutdown documentation is incomplete

2010-09-26 Thread Sandro Tosi
Sandro Tosi added the comment: Hello, I've refreshed this patch (correct the file name & because it applies now with an offset), other than that it seems ok: can someone review (it's quite small :) and apply it? Thanks, Sandro -- nosy: +sandro.tosi Added file: http://bugs.python.org/

[issue6031] BaseServer.shutdown documentation is incomplete

2009-11-15 Thread Gabriel Genellina
Gabriel Genellina added the comment: Documentation patch for BaseServer.server_forever() and shutdown() -- keywords: +patch Added file: http://bugs.python.org/file15342/socketserver.rst.diff ___ Python tracker

[issue6031] BaseServer.shutdown documentation is incomplete

2009-05-15 Thread Gabriel Genellina
New submission from Gabriel Genellina : BaseServer.shutdown is documented as "Tells the serve_forever() loop to stop and waits until it does." The docstring is much more explicit: """Stops the serve_forever loop. Blocks until the loop has finished. This must be called while serve_forever() is