(self)
| 4592 | self.fast_save_enter(lambda i: frozendict(key=i), minprotocol=2) |
| 4593 | |
| 4594 | def test_fast_save_enter_dict(self): |
| 4595 | self.fast_save_enter(lambda i: {"key": i}) |
| 4596 | |
| 4597 | def deep_nested_struct(self, create_nested, |
| 4598 | minprotocol=0, compare_equal=True, |
nothing calls this directly
no test coverage detected