diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-04-29 08:27:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-04-29 08:27:09 (GMT) |
commit | 3f73e4c7150a15ad6756e85c696f77ad14f2f08c (patch) | |
tree | 4aa96caf88ee3361f782cb5a43c3035ba6ce6306 /Lib/test/test_poplib.py | |
parent | b8503896ade8feab60406f616ed0b568cded43ff (diff) | |
download | cpython-3f73e4c7150a15ad6756e85c696f77ad14f2f08c.zip cpython-3f73e4c7150a15ad6756e85c696f77ad14f2f08c.tar.gz cpython-3f73e4c7150a15ad6756e85c696f77ad14f2f08c.tar.bz2 |
Fix failure in test_poplib after issue #20951.
Diffstat (limited to 'Lib/test/test_poplib.py')
-rw-r--r-- | Lib/test/test_poplib.py | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/Lib/test/test_poplib.py b/Lib/test/test_poplib.py index d076fc1..d695a0d 100644 --- a/Lib/test/test_poplib.py +++ b/Lib/test/test_poplib.py @@ -349,23 +349,18 @@ class TestPOP3Class(TestCase): if SUPPORTS_SSL: + from test.test_ftplib import SSLConnection - class DummyPOP3_SSLHandler(DummyPOP3Handler): + class DummyPOP3_SSLHandler(SSLConnection, DummyPOP3Handler): def __init__(self, conn): asynchat.async_chat.__init__(self, conn) - ssl_socket = ssl.wrap_socket(self.socket, certfile=CERTFILE, - server_side=True, - do_handshake_on_connect=False) - self.del_channel() - self.set_socket(ssl_socket) - # Must try handshake before calling push() - self.tls_active = True - self.tls_starting = True - self._do_tls_handshake() + self.secure_connection() self.set_terminator(b"\r\n") self.in_buffer = [] self.push('+OK dummy pop3 server ready. <timestamp>') + self.tls_active = True + self.tls_starting = False @requires_ssl |