(self)
| 2690 | self._test_recursive_dict(MyDict, minprotocol=2) |
| 2691 | |
| 2692 | def test_recursive_dict_like(self): |
| 2693 | self._test_recursive_dict(REX_seven, asdict=lambda x: x.table) |
| 2694 | |
| 2695 | def _test_recursive_tuple_and_dict(self, cls, asdict=identity, minprotocol=0): |
| 2696 | # Tuple containing a dict containing the original tuple. |
nothing calls this directly
no test coverage detected