Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 99f9bd1

Browse files
committed
Merged revisions 82890 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ........ r82890 | senthil.kumaran | 2010-07-15 00:45:23 +0530 (Thu, 15 Jul 2010) | 3 lines Fix: Issue6853 - Get HTTPS system proxy in Windows. ........
1 parent 376e14a commit 99f9bd1

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lib/urllib/request.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2283,6 +2283,7 @@ def getproxies_registry():
22832283
proxies['http'] = proxyServer
22842284
else:
22852285
proxies['http'] = 'http://%s' % proxyServer
2286+
proxies['https'] = 'http://%s' % proxyServer
22862287
proxies['ftp'] = 'ftp://%s' % proxyServer
22872288
internetSettings.Close()
22882289
except (WindowsError, ValueError, TypeError):

0 commit comments

Comments
 (0)