(self)
| 462 | |
| 463 | class MySet(set): # Override repr of a basic type |
| 464 | def __repr__(self): |
| 465 | return 'mine' |
| 466 | |
| 467 | def test_custom_repr(): |
| 468 | """A custom repr should override a pretty printer for a parent type""" |
nothing calls this directly
no outgoing calls
no test coverage detected