[pypy-commit] pypy py3.5: backout d267f0decb98: SSL works now

rlamy pypy.commits at gmail.com
Sat Dec 3 22:49:02 EST 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.5
Changeset: r88865:b19db5975aaa
Date: 2016-12-04 03:23 +0000
http://bitbucket.org/pypy/pypy/changeset/b19db5975aaa/

Log:	backout d267f0decb98: SSL works now

diff --git a/lib-python/3/test/test_logging.py b/lib-python/3/test/test_logging.py
--- a/lib-python/3/test/test_logging.py
+++ b/lib-python/3/test/test_logging.py
@@ -1665,7 +1665,7 @@
         logger = logging.getLogger("http")
         root_logger = self.root_logger
         root_logger.removeHandler(self.root_logger.handlers[0])
-        for secure in (False,):  # XXX: disable SSL tests until it works
+        for secure in (False, True):
             addr = ('localhost', 0)
             if secure:
                 try:


More information about the pypy-commit mailing list