(self, debuglevel=None, context=None, check_hostname=None)
| 530 | # properties of httpcon |
| 531 | |
| 532 | def __init__(self, debuglevel=None, context=None, check_hostname=None): |
| 533 | super(MockHTTPSHandler, self).__init__(debuglevel, context, check_hostname) |
| 534 | self.httpconn = MockHTTPClass() |
| 535 | |
| 536 | def https_open(self, req): |
| 537 | return self.do_open(self.httpconn, req) |
nothing calls this directly
no test coverage detected