##// END OF EJS Templates
tests: use urlreq in tinyproxy.py...
Gregory Szorc -
r31571:b2a41a82 default
parent child Browse files
Show More
@@ -23,8 +23,8 b' import sys'
23 23 from mercurial import util
24 24
25 25 httpserver = util.httpserver
26 urlparse = util.urlparse
27 26 socketserver = util.socketserver
27 urlreq = util.urlreq
28 28
29 29 if os.environ.get('HGIPV6', '0') == '1':
30 30 family = socket.AF_INET6
@@ -85,7 +85,7 b' class ProxyHandler (httpserver.basehttpr'
85 85 self.connection.close()
86 86
87 87 def do_GET(self):
88 (scm, netloc, path, params, query, fragment) = urlparse.urlparse(
88 (scm, netloc, path, params, query, fragment) = urlreq.urlparse(
89 89 self.path, 'http')
90 90 if scm != 'http' or fragment or not netloc:
91 91 self.send_error(400, "bad url %s" % self.path)
@@ -96,7 +96,7 b' class ProxyHandler (httpserver.basehttpr'
96 96 self.log_request()
97 97 soc.send("%s %s %s\r\n" % (
98 98 self.command,
99 urlparse.urlunparse(('', '', path, params, query, '')),
99 urlreq.urlunparse(('', '', path, params, query, '')),
100 100 self.request_version))
101 101 self.headers['Connection'] = 'close'
102 102 del self.headers['Proxy-Connection']
General Comments 0
You need to be logged in to leave comments. Login now