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.

classification
Title: system proxy not used for https (on windows)
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: orsenthil Nosy List: BreamoreBoy, ldeller, orsenthil
Priority: normal Keywords: patch

Created on 2009-09-07 04:46 by ldeller, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
urllib-httpsproxy.patch ldeller, 2009-09-07 04:46 Patch to use system web proxy for https URLs
Messages (3)
msg92342 - (view) Author: lplatypus (ldeller) * Date: 2009-09-07 04:46
On Windows, the urllib2 module (renamed to urllib.request in python 3)
does not use the system web proxy for https URLs in the case where "Use
the same proxy for all protocols" is selected in the Internet Explorer
proxy settings.

Attached is a patch against urllib/request.py in python 3.1.1
msg109973 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-07-11 09:31
This is a one line patch.
msg110317 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2010-07-14 19:26
Fixed in r82890 and branches. Thanks Mark for bringing these issues out.
History
Date User Action Args
2022-04-11 14:56:52adminsetgithub: 51102
2010-07-14 19:26:36orsenthilsetstatus: open -> closed
resolution: fixed
messages: + msg110317

stage: patch review -> resolved
2010-07-11 09:31:49BreamoreBoysetversions: + Python 2.7, Python 3.2, - Python 2.6
nosy: + BreamoreBoy, orsenthil

messages: + msg109973

assignee: orsenthil
stage: patch review
2009-09-07 04:46:29ldellercreate