(self, visited)
| 877 | return field_ob_item[i] |
| 878 | |
| 879 | def proxyval(self, visited): |
| 880 | # Guard against infinite loops: |
| 881 | if self.as_address() in visited: |
| 882 | return ProxyAlreadyVisited('[...]') |
| 883 | visited.add(self.as_address()) |
| 884 | |
| 885 | result = [PyObjectPtr.from_pyobject_ptr(self[i]).proxyval(visited) |
| 886 | for i in safe_range(int_from_int(self.field('ob_size')))] |
| 887 | return result |
| 888 | |
| 889 | def write_repr(self, out, visited): |
| 890 | # Guard against infinite loops: |
nothing calls this directly
no test coverage detected