(self, out, visited)
| 594 | arg_proxy) |
| 595 | |
| 596 | def write_repr(self, out, visited): |
| 597 | # Guard against infinite loops: |
| 598 | if self.as_address() in visited: |
| 599 | out.write('(...)') |
| 600 | return |
| 601 | visited.add(self.as_address()) |
| 602 | |
| 603 | out.write(self.safe_tp_name()) |
| 604 | self.write_field_repr('args', out, visited) |
| 605 | |
| 606 | class PyClassObjectPtr(PyObjectPtr): |
| 607 | """ |
nothing calls this directly
no test coverage detected