(self)
| 4629 | self.deep_nested_struct(lambda data: frozenset((1, data))) |
| 4630 | |
| 4631 | def test_deep_nested_struct_set(self): |
| 4632 | self.deep_nested_struct(lambda data: {K(data)}, |
| 4633 | depth=FAST_NESTING_LIMIT+1, |
| 4634 | compare_equal=False) |
| 4635 | |
| 4636 | def test_deep_nested_struct_frozendict(self): |
| 4637 | if self.py_version < (3, 15): |
nothing calls this directly
no test coverage detected