From: Senthil Kumaran Date: Tue, 1 Nov 2011 15:57:57 +0000 (+0800) Subject: 'HTTPSHandler' and not the type. X-Git-Tag: v3.3.0a1~986 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c875a986fbbd51774dbc87b742e6e71b57eef58;p=thirdparty%2FPython%2Fcpython.git 'HTTPSHandler' and not the type. --- diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index d360966fc4c6..3a472f235f63 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1200,7 +1200,7 @@ if hasattr(http.client, 'HTTPSConnection'): https_request = AbstractHTTPHandler.do_request_ - __all__.append(HTTPSHandler) + __all__.append('HTTPSHandler') class HTTPCookieProcessor(BaseHandler): def __init__(self, cookiejar=None):