Used to test self-referential repr() calls
| 35 | raise RuntimeError |
| 36 | |
| 37 | class ReprWrapper: |
| 38 | 'Used to test self-referential repr() calls' |
| 39 | def __repr__(self): |
| 40 | return repr(self.value) |
| 41 | |
| 42 | class HashCountingInt(int): |
| 43 | 'int-like object that counts the number of times __hash__ is called' |
no outgoing calls