[issue8506] SimpleXMLRPCServer Socket not closed after shutdown call

2010-08-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: The behavior is as documented, so this is a feature request. The 3.1.2 doc in 20.19.2. Server Objects says "BaseServer.shutdown() Tells the serve_forever() loop to stop and waits until it does." I presume this allows subsequent .handle_request() and ..serve_fo

[issue8506] SimpleXMLRPCServer Socket not closed after shutdown call

2010-04-27 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- nosy: +santa4nt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue8506] SimpleXMLRPCServer Socket not closed after shutdown call

2010-04-23 Thread Erik Schweller
New submission from Erik Schweller : Calling shutdown on a SimpleXMLRPCServer will stop the server but does not close the socket, meaning new connections to the same address will fail. Example: srv = SimpleXMLRPCServer((ip, port), logRequests=False, all