(self)
| 2651 | Bad2() |
| 2652 | |
| 2653 | def test_post_init_inheritance(self): |
| 2654 | called = False |
| 2655 | |
| 2656 | class Base: |
| 2657 | def __post_init__(self): |
| 2658 | nonlocal called |
| 2659 | called = True |
| 2660 | |
| 2661 | class Ex(Struct, Base): |
| 2662 | x: int |
| 2663 | |
| 2664 | Ex(1) |
| 2665 | assert called |
| 2666 | |
| 2667 | def test_post_init_not_called_on_copy(self): |
| 2668 | count = 0 |