[Python-checkins] r64580 - python/trunk/Lib/test/test_ssl.py

bill.janssen python-checkins at python.org
Sun Jun 29 01:00:39 CEST 2008


Author: bill.janssen
Date: Sun Jun 29 01:00:39 2008
New Revision: 64580

Log:
make sure we close the active channels when eof is received on them

Modified:
   python/trunk/Lib/test/test_ssl.py

Modified: python/trunk/Lib/test/test_ssl.py
==============================================================================
--- python/trunk/Lib/test/test_ssl.py	(original)
+++ python/trunk/Lib/test/test_ssl.py	Sun Jun 29 01:00:39 2008
@@ -386,6 +386,7 @@
                     self.send(data.lower())
 
                 def handle_close(self):
+                    self.close()
                     if test_support.verbose:
                         sys.stdout.write(" server:  closed connection %s\n" % self.socket)
 


More information about the Python-checkins mailing list