(self)
| 4581 | self.fast_save_enter(lambda i: [i]) |
| 4582 | |
| 4583 | def test_fast_save_enter_frozenset(self): |
| 4584 | self.fast_save_enter(lambda i: frozenset([i])) |
| 4585 | |
| 4586 | def test_fast_save_enter_set(self): |
| 4587 | self.fast_save_enter(lambda i: set([i])) |
nothing calls this directly
no test coverage detected