(self, **kwargs)
| 601 | d = 0 |
| 602 | |
| 603 | def __init__(self, **kwargs): |
| 604 | super().__init__(**kwargs) |
| 605 | self.on_trait_change(self.listener2) |
| 606 | |
| 607 | def listener2(self, name, old, new): |
| 608 | self.c += 1 |
nothing calls this directly
no test coverage detected