diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-27 17:33:01 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-27 17:33:01 +0100 |
commit | eced82ecbfa8a1e381ee1bf40310968c10fd85dc (patch) | |
tree | d348b4b9f2c9d574b32970fecb33bfacd0e853a4 | |
parent | 871b9d169d839706492d861a20ce5d1018beebd9 (diff) | |
download | cpython-git-eced82ecbfa8a1e381ee1bf40310968c10fd85dc.tar.gz |
Fix intermittent test_ssl failure.
-rw-r--r-- | Lib/test/test_ssl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index c6c26bcee3..bde42888e3 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -911,6 +911,7 @@ else: + repr(connaddr) + '\n') handler = self.ConnectionHandler(self, newconn, connaddr) handler.start() + handler.join() except socket.timeout: pass except KeyboardInterrupt: |