]> granicus.if.org Git - python/commitdiff
bpo-30199: test_ssl closes all asyncore channels (#1381) (#1408)
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 3 May 2017 01:47:34 +0000 (03:47 +0200)
committerGitHub <noreply@github.com>
Wed, 3 May 2017 01:47:34 +0000 (03:47 +0200)
AsyncoreEchoServer of test_ssl now calls
asyncore.close_all(ignore_all=True) to ensure that
asyncore.socket_map is cleared once the test completes, even if
ConnectionHandler was not correctly unregistered.

Fix the following warning:

Warning -- asyncore.socket_map was modified by test_ssl
  Before: {}
  After:  {6: <test.test_ssl.AsyncoreEchoServer.EchoServer.ConnectionHandler>}
(cherry picked from commit 1dae7450c68bad498e57800387b24cb103c461fa)

Lib/test/test_ssl.py

index a1258c65a576b54cde7d283f464562fe4a41e231..2f98cf145508a458c324bc416c74e6cf2db94989 100644 (file)
@@ -1955,6 +1955,8 @@ else:
             self.join()
             if support.verbose:
                 sys.stdout.write(" cleanup: successfully joined.\n")
+            # make sure that ConnectionHandler is removed from socket_map
+            asyncore.close_all(ignore_all=True)
 
         def start(self, flag=None):
             self.flag = flag