| 567 | |
| 568 | def test_str_subclass_error(self): |
| 569 | class BadStr(str): |
| 570 | def __eq__(self, other): |
| 571 | raise RuntimeError |
| 572 | def __hash__(self): |
| 573 | return str.__hash__(self) |
| 574 | |
| 575 | def f(**kwargs): |
| 576 | return kwargs |
no outgoing calls
searching dependent graphs…