| 2383 | |
| 2384 | |
| 2385 | class CacheModification(HasTraits): |
| 2386 | foo = Int() |
| 2387 | bar = Int() |
| 2388 | |
| 2389 | def _bar_validate(self, value, trait): |
| 2390 | self.foo = value |
| 2391 | return value |
| 2392 | |
| 2393 | def _foo_validate(self, value, trait): |
| 2394 | self.bar = value |
| 2395 | return value |
| 2396 | |
| 2397 | |
| 2398 | def test_cache_modification(): |
searching dependent graphs…