From: Bill Janssen Date: Sat, 28 Jun 2008 23:00:39 +0000 (+0000) Subject: make sure we close the active channels when eof is received on them X-Git-Tag: v2.6b2~149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de34d91eb060e8d00dfd071ae10904294eb67157;p=thirdparty%2FPython%2Fcpython.git make sure we close the active channels when eof is received on them --- diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index d786154c8093..b05b17eece4b 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -386,6 +386,7 @@ else: self.send(data.lower()) def handle_close(self): + self.close() if test_support.verbose: sys.stdout.write(" server: closed connection %s\n" % self.socket)