(self)
| 2748 | self._test_recursive_dict_key(MyDict, minprotocol=2) |
| 2749 | |
| 2750 | def test_recursive_dict_like_key(self): |
| 2751 | self._test_recursive_dict_key(REX_seven, asdict=lambda x: x.table) |
| 2752 | |
| 2753 | def _test_recursive_tuple_and_dict_key(self, cls, asdict=identity, minprotocol=0): |
| 2754 | # Tuple containing a dict containing an immutable object (as key) |
nothing calls this directly
no test coverage detected