()
| 693 | |
| 694 | |
| 695 | def test_tokenize_slotted(): |
| 696 | class Foo: |
| 697 | __slots__ = ("x",) |
| 698 | |
| 699 | def __init__(self, x): |
| 700 | self.x = x |
| 701 | |
| 702 | assert check_tokenize(Foo(1)) != check_tokenize(Foo(2)) |
| 703 | |
| 704 | |
| 705 | def test_tokenize_slotted_no_value(): |
nothing calls this directly
no test coverage detected