1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-14 17:46:17 +01:00

Remove compat code for Python < 2.6

This commit is contained in:
Dan Čermák 2020-02-21 15:09:58 +01:00
parent 20f2f40614
commit 175bcb4613
No known key found for this signature in database
GPG Key ID: 8F8C178E966641D3

View File

@ -593,14 +593,6 @@ def init_basicauth(config, config_mtime):
HTTPConnection.send = filterhdrs(HTTPConnection.send, True, 'Cookie', 'Authorization')
HTTPResponse.begin = filterhdrs(HTTPResponse.begin, False, 'header: Set-Cookie.*\n')
if sys.version_info < (2, 6):
# HTTPS proxy is not supported in old urllib2. It only leads to an error
# or, at best, a warning.
if 'https_proxy' in os.environ:
del os.environ['https_proxy']
if 'HTTPS_PROXY' in os.environ:
del os.environ['HTTPS_PROXY']
if config['http_debug']:
# brute force
def urllib2_debug_init(self, debuglevel=0):