diff --git a/Lib/test/test_urllib2_localnet.py b/Lib/test/test_urllib2_localnet.py index fb2413d83f2..b22954c2946 100644 --- a/Lib/test/test_urllib2_localnet.py +++ b/Lib/test/test_urllib2_localnet.py @@ -352,6 +352,8 @@ class TestUrlopen(unittest.TestCase): def setUp(self): super(TestUrlopen, self).setUp() + # Ignore proxies for localhost tests. + os.environ['NO_PROXY'] = '*' self.server = None def tearDown(self): diff --git a/Misc/NEWS b/Misc/NEWS index b85fd43175a..f626c41d0fd 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -186,6 +186,9 @@ Core and Builtins 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. Patch Serhiy Storchaka.