(self)
| 2299 | j = Int() |
| 2300 | |
| 2301 | def __init__(self): |
| 2302 | with self.hold_trait_notifications(): |
| 2303 | self.i = 1 |
| 2304 | self.on_trait_change(self._i_changed, "i") |
| 2305 | |
| 2306 | |
| 2307 | def test_pickle_hastraits(): |
nothing calls this directly
no test coverage detected