(self, debuglevel=None)
| 489 | # Very simple mock HTTP handler with no special behavior other than using a mock HTTP connection |
| 490 | |
| 491 | def __init__(self, debuglevel=None): |
| 492 | super(MockHTTPHandler, self).__init__(debuglevel=debuglevel) |
| 493 | self.httpconn = MockHTTPClass() |
| 494 | |
| 495 | def http_open(self, req): |
| 496 | return self.do_open(self.httpconn, req) |
nothing calls this directly
no test coverage detected