[Python-checkins] r42201 - python/trunk/Lib/test/test_logging.py

martin.v.loewis python-checkins at python.org
Sun Jan 29 20:55:20 CET 2006


Author: martin.v.loewis
Date: Sun Jan 29 20:55:18 2006
New Revision: 42201

Modified:
   python/trunk/Lib/test/test_logging.py
Log:
Explicitly close the server socket.


Modified: python/trunk/Lib/test/test_logging.py
==============================================================================
--- python/trunk/Lib/test/test_logging.py	(original)
+++ python/trunk/Lib/test/test_logging.py	Sun Jan 29 20:55:18 2006
@@ -109,6 +109,8 @@
             abort = self.abort
         #notify the main thread that we're about to exit
         socketDataProcessed.set()
+        # close the listen socket
+        self.server_close()
 
     def process_request(self, request, client_address):
         #import threading


More information about the Python-checkins mailing list