Home | History | Annotate | Download | only in python2.7

Lines Matching refs:no_proxy

1374     Checks the environment for a variable named no_proxy, which should
1377 no_proxy = os.environ.get('no_proxy', '') or os.environ.get('NO_PROXY', '')
1379 if no_proxy == '*':
1384 no_proxy_list = [proxy.strip() for proxy in no_proxy.split(',')]