(self)
| 4578 | self.fast_save_enter(lambda i: (i,)) |
| 4579 | |
| 4580 | def test_fast_save_enter_list(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])) |
nothing calls this directly
no test coverage detected