| 570 | self.safe_tp_name(), pyop_attrs, self.as_address()) |
| 571 | |
| 572 | class ProxyException(Exception): |
| 573 | def __init__(self, tp_name, args): |
| 574 | self.tp_name = tp_name |
| 575 | self.args = args |
| 576 | |
| 577 | def __repr__(self): |
| 578 | return '%s%r' % (self.tp_name, self.args) |
| 579 | |
| 580 | class PyBaseExceptionObjectPtr(PyObjectPtr): |
| 581 | """ |
no outgoing calls
no test coverage detected
searching dependent graphs…