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.

Author Jiri Hnidek
Recipients Jiri Hnidek
Date 2017-05-24.20:13:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495656791.66.0.906077456639.issue30462@psf.upfronthosting.co.za>
In-reply-to
Content
Module urllib contains method proxy_bypass_environment(domain_name). This method check if domain_name should be excluded from proxying. The domain_name is checked against environment variable no_proxy or NO_PROXY. This variable contains comma separated list of domain names/domains. Domains can be specified in following variants:

 - domain.com
 - .domain.com
 - *.domain.com

Method proxy_bypass_environment support first two variants, but it doesn't support variant with asterisk at beginning of domain. The last variant is not anything unusual; e.g.: https://www.gnu.org/software/emacs/manual/html_node/url/Proxies.html
History
Date User Action Args
2017-05-24 20:13:11Jiri Hnideksetrecipients: + Jiri Hnidek
2017-05-24 20:13:11Jiri Hnideksetmessageid: <1495656791.66.0.906077456639.issue30462@psf.upfronthosting.co.za>
2017-05-24 20:13:11Jiri Hnideklinkissue30462 messages
2017-05-24 20:13:11Jiri Hnidekcreate