Commit 303eb478 authored by Senthil Kumaran's avatar Senthil Kumaran

Issue #16702: Skip proxies for localhost in urllib2_localnet tests

parent b7c2386a
...@@ -352,6 +352,8 @@ class TestUrlopen(unittest.TestCase): ...@@ -352,6 +352,8 @@ class TestUrlopen(unittest.TestCase):
def setUp(self): def setUp(self):
super(TestUrlopen, self).setUp() super(TestUrlopen, self).setUp()
# Ignore proxies for localhost tests.
os.environ['NO_PROXY'] = '*'
self.server = None self.server = None
def tearDown(self): def tearDown(self):
......
...@@ -179,6 +179,9 @@ Core and Builtins ...@@ -179,6 +179,9 @@ Core and Builtins
Library Library
------- -------
- Issue #16702: test_urllib2_localnet tests now correctly ignores proxies for
localhost tests.
- Issue #16511: Use default IDLE width and height if config param is not valid. - Issue #16511: Use default IDLE width and height if config param is not valid.
Patch Serhiy Storchaka. Patch Serhiy Storchaka.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment