[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 rep...@bugs.python.org
http://bugs.python.org/issue11242
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2011-05-24 Thread STINNER Victor

STINNER Victor victor.stin...@haypocalc.com 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

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11242
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2011-05-24 Thread Antoine Pitrou

Antoine Pitrou pit...@free.fr 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 rep...@bugs.python.org
http://bugs.python.org/issue11242
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2011-02-18 Thread STINNER Victor

New submission from STINNER Victor victor.stin...@haypocalc.com:

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: normal
severity: normal
status: open
title: urllib.request.url_open() doesn't support SSLContext
versions: Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11242
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2011-02-18 Thread Senthil Kumaran

Changes by Senthil Kumaran orsent...@gmail.com:


--
nosy: +orsenthil

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11242
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com