fix alleged refleak

This commit is contained in:
Benjamin Peterson 2009-12-24 01:09:53 +00:00
parent 9f12d468f4
commit 3293593b54

View file

@ -292,10 +292,11 @@ class MockHTTPClass:
self._tunnel_headers = headers self._tunnel_headers = headers
else: else:
self._tunnel_headers.clear() self._tunnel_headers.clear()
def request(self, method, url, body=None, headers={}): def request(self, method, url, body=None, headers=None):
self.method = method self.method = method
self.selector = url self.selector = url
self.req_headers += headers.items() if headers is not None:
self.req_headers += headers.items()
self.req_headers.sort() self.req_headers.sort()
if body: if body:
self.data = body self.data = body
@ -415,7 +416,11 @@ class MockHTTPHandler(urllib2.BaseHandler):
class MockHTTPSHandler(urllib2.AbstractHTTPHandler): class MockHTTPSHandler(urllib2.AbstractHTTPHandler):
# Useful for testing the Proxy-Authorization request by verifying the # Useful for testing the Proxy-Authorization request by verifying the
# properties of httpcon # properties of httpcon
httpconn = MockHTTPClass()
def __init__(self):
urllib2.AbstractHTTPHandler.__init__(self)
self.httpconn = MockHTTPClass()
def https_open(self, req): def https_open(self, req):
return self.do_open(self.httpconn, req) return self.do_open(self.httpconn, req)