[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-02-22 Thread
Change by 双草酸酯 : -- components: +Library (Lib) ___ Python tracker <https://bugs.python.org/issue42627> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-02-22 Thread
Change by 双草酸酯 : -- components: +Windows -Library (Lib) ___ Python tracker <https://bugs.python.org/issue42627> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-02-21 Thread
双草酸酯 added the comment: I came across this issue as well. I checked Microsoft documentations and it seems `InternetGetProxyInfo` in WinInet is deprecated, while `WinHttpGetIEProxyConfigForCurrentUser` in WinHTTP will return the exact same string as what it stored registery. https

[issue43074] Unable to use system proxy with HTTPS connection on Windows

2021-02-02 Thread
双草酸酯 added the comment: Oh sorry I forgot requests is a third party library. -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue43074] Unable to use system proxy with HTTPS connection on Windows

2021-01-29 Thread
New submission from 双草酸酯 : On Windows you can only set a "host:port" http proxy as system proxy. ``` PS > Get-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings' | findstr ProxyServer ProxyServer : 127.0.0.1:7890 ``` But in Pytho