A tiny little tweak to keep the 2.6 tests from failing on the timeout parameter.

This commit is contained in:
Ryan Williams
2009-09-17 22:06:34 -07:00
parent 307068ad78
commit ce9dcfd5dd

View File

@@ -629,7 +629,7 @@ class HTTPConnection:
debuglevel = 0
strict = 0
def __init__(self, host, port=None, strict=None):
def __init__(self, host, port=None, strict=None, timeout=0):
self.sock = None
self._buffer = []
self.__response = None
@@ -1122,7 +1122,7 @@ class HTTPSConnection(HTTPConnection):
default_port = HTTPS_PORT
def __init__(self, host, port=None, key_file=None, cert_file=None,
strict=None):
strict=None, timeout=0):
HTTPConnection.__init__(self, host, port, strict)
self.key_file = key_file
self.cert_file = cert_file