This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients loewis, neologix, pitrou, pventura
Date 2012-10-30.19:44:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351626265.66.0.556843609113.issue16361@psf.upfronthosting.co.za>
In-reply-to
Content
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)
History
Date User Action Args
2012-10-30 19:44:25pitrousetrecipients: + pitrou, loewis, neologix, pventura
2012-10-30 19:44:25pitrousetmessageid: <1351626265.66.0.556843609113.issue16361@psf.upfronthosting.co.za>
2012-10-30 19:44:25pitroulinkissue16361 messages
2012-10-30 19:44:25pitroucreate