(self, visited)
| 585 | _typename = 'PyBaseExceptionObject' |
| 586 | |
| 587 | def proxyval(self, visited): |
| 588 | # Guard against infinite loops: |
| 589 | if self.as_address() in visited: |
| 590 | return ProxyAlreadyVisited('(...)') |
| 591 | visited.add(self.as_address()) |
| 592 | arg_proxy = self.pyop_field('args').proxyval(visited) |
| 593 | return ProxyException(self.safe_tp_name(), |
| 594 | arg_proxy) |
| 595 | |
| 596 | def write_repr(self, out, visited): |
| 597 | # Guard against infinite loops: |
nothing calls this directly
no test coverage detected