Andy Dustman notes that I patched the close() call in the wrong place.

Here's the correct patch!
This commit is contained in:
Guido van Rossum 1999-06-01 18:58:34 +00:00
parent 6b708d569c
commit 198e7cac5a
1 changed files with 1 additions and 1 deletions

View File

@ -300,11 +300,11 @@ class ForkingMixIn:
# Child process.
# This must never return, hence os._exit()!
try:
self.socket.close()
self.finish_request(request, client_address)
os._exit(0)
except:
try:
self.socket.close()
self.handle_error(request,
client_address)
finally: