Issue #5715: In socketserver, close the server socket in the child process.

This commit is contained in:
Charles-François Natali 2011-05-24 18:27:25 +02:00
commit cf057597e6
2 changed files with 3 additions and 1 deletions

View File

@ -549,10 +549,10 @@ class ForkingMixIn:
self.active_children = []
self.active_children.append(pid)
self.close_request(request)
return
else:
# Child process.
# This must never return, hence os._exit()!
self.socket.close()
try:
self.finish_request(request, client_address)
self.shutdown_request(request)

View File

@ -13,6 +13,8 @@ Core and Builtins
Library
-------
- Issue #5715: In socketserver, close the server socket in the child process.
- Correct lookup of __dir__ on objects. Among other things, this causes errors
besides AttributeError found on lookup to be propagated.