[issue11242] urllib.request.url_open() doesn't support SSLContext

2013-01-02 Thread STINNER Victor
STINNER Victor added the comment: A solution does already exist, and I'm not motivated to work on an helper, so I'm closing this issue. -- resolution: -> rejected status: open -> closed ___ Python tracker ___

[issue11242] urllib.request.url_open() doesn't support SSLContext

2011-05-24 Thread Antoine Pitrou
Antoine Pitrou added the comment: That's not really useful. If you want to use an SSL context, build your own opener: opener = build_opener(HTTPSHandler(context=mycontext)) opener.open(...) -- ___ Python tracker

[issue11242] urllib.request.url_open() doesn't support SSLContext

2011-05-24 Thread STINNER Victor
STINNER Victor added the comment: url_open_ssl_context.patch: add optinal ssl_context argument to urllib.request.url_open(). (ca_file, ca_path) and ssl_context are mutual exclusive. -- keywords: +patch Added file: http://bugs.python.org/file22092/url_open_ssl_context.patch __

[issue11242] urllib.request.url_open() doesn't support SSLContext

2011-02-18 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue11242] urllib.request.url_open() doesn't support SSLContext

2011-02-18 Thread STINNER Victor
New submission from STINNER Victor : Issue #9003 added cafile and capath arguments to url_open(), but it is not possible to reuse a SSLContext object (which would avoid to reload certificates, CRL, etc.). -- components: Library (Lib) messages: 128779 nosy: haypo, pitrou priority: norma