Remove Python 2 test.test_support import

This commit is contained in:
Chris Mayo 2020-05-15 19:37:04 +01:00
parent 025637b08d
commit 9f95d06a39

View file

@ -16,11 +16,9 @@
"""
Test proxy handling.
"""
from test.support import EnvironmentVarGuard
from . import httpserver
try:
from test.support import EnvironmentVarGuard
except ImportError: # Python 3
from test.test_support import EnvironmentVarGuard
class TestProxy (httpserver.HttpServerTest):
"""Test no_proxy env var handling."""