()
| 682 | |
| 683 | |
| 684 | def test_tokenize_same_repr(): |
| 685 | class Foo: |
| 686 | def __init__(self, x): |
| 687 | self.x = x |
| 688 | |
| 689 | def __repr__(self): |
| 690 | return "a foo" |
| 691 | |
| 692 | assert check_tokenize(Foo(1)) != check_tokenize(Foo(2)) |
| 693 | |
| 694 | |
| 695 | def test_tokenize_slotted(): |
nothing calls this directly
no test coverage detected