(self, index, pc, sp, fp, func_name, func_start, module)
| 318 | |
| 319 | """ |
| 320 | def __init__(self, index, pc, sp, fp, func_name, func_start, module): |
| 321 | self.index = index |
| 322 | self.pc = pc |
| 323 | self.sp = sp |
| 324 | self.fp = fp |
| 325 | self.func_name = func_name |
| 326 | self.func_start = func_start |
| 327 | self.module = module |
| 328 | |
| 329 | def __eq__(self, other): |
| 330 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected