Merged revisions 82890 via svnmerge from

svn+ssh://pythondev@svn.python.org/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.
........
This commit is contained in:
Senthil Kumaran 2010-07-14 19:25:26 +00:00
parent 21239048a6
commit 836a2bba2f
1 changed files with 1 additions and 0 deletions

View File

@ -1453,6 +1453,7 @@ elif os.name == 'nt':
proxies['http'] = proxyServer
else:
proxies['http'] = 'http://%s' % proxyServer
proxies['https'] = 'http://%s' % proxyServer
proxies['ftp'] = 'ftp://%s' % proxyServer
internetSettings.Close()
except (WindowsError, ValueError, TypeError):