Antoine Pitrou added the comment: Note that you could work around the issue by forcing a lower SSL version:
ssl_context = ssl.SSLContext(ssl.PROTOCOL_SSLv3) opener = urllib.request.build_opener( urllib.request.HTTPCookieProcessor(cj), urllib.request.HTTPSHandler(context=ssl_context)) urllib.request.install_opener(opener) (I would suggest doing this only for this particular HTTPS site, not globally, since using a lower SSL version may make the exchanges potentially less secure) ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue16361> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com