(self, instr)
| 121 | return "Stack:\nFunction calls:\n%s\nLoad attrs:\n%s\n" % (self.function_calls, list(self.load_attrs.values())) |
| 122 | |
| 123 | def _getname(self, instr): |
| 124 | if instr.opcode in _opcode.hascompare: |
| 125 | cmp_op = dis.cmp_op[instr.arg] |
| 126 | if cmp_op not in ("exception match", "BAD"): |
| 127 | return _COMP_OP_MAP.get(cmp_op, cmp_op) |
| 128 | return instr.arg |
| 129 | |
| 130 | def _getcallname(self, instr): |
| 131 | if instr.name == "BINARY_SUBSCR": |
no test coverage detected