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 moritzs
Recipients moritzs
Date 2013-07-24.12:26:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374668818.72.0.697922032573.issue18543@psf.upfronthosting.co.za>
In-reply-to
Content
If you pass any of cafile, capath or cadefault to urllib.parse.urlopen it creates a new opener that contains the HTTPSHandler that was according to the ca* arguments. It then uses this new opener to execute the request.
If you installed a custom opener with urllib.parse.install_opener it won't be used.

urlopen should either add a HTTPSHandler to the installed opener or not accept any Handler specific arguments at all.
History
Date User Action Args
2013-07-24 12:26:58moritzssetrecipients: + moritzs
2013-07-24 12:26:58moritzssetmessageid: <1374668818.72.0.697922032573.issue18543@psf.upfronthosting.co.za>
2013-07-24 12:26:58moritzslinkissue18543 messages
2013-07-24 12:26:58moritzscreate