(self, port_number, switches, minidump_name)
| 3667 | class InspectionWebServer(http_server.HTTPServer): |
| 3668 | |
| 3669 | def __init__(self, port_number, switches, minidump_name): |
| 3670 | super().__init__(('localhost', port_number), InspectionWebHandler) |
| 3671 | splitpath = os.path.split(minidump_name) |
| 3672 | self.dumppath = splitpath[0] |
| 3673 | self.dumpfilename = splitpath[1] |
| 3674 | self.default_formatter = InspectionWebFormatter( |
| 3675 | switches, minidump_name, self) |
| 3676 | self.formatters = { self.dumpfilename : self.default_formatter } |
| 3677 | self.switches = switches |
| 3678 | |
| 3679 | def output_dump_desc_field(self, f, name): |
| 3680 | try: |
nothing calls this directly
no test coverage detected