(self)
| 2581 | self.assertIs(y[1], x) |
| 2582 | |
| 2583 | def test_recursive_dict(self): |
| 2584 | self._test_recursive_dict(dict) |
| 2585 | |
| 2586 | def test_recursive_dict_subclass(self): |
| 2587 | self._test_recursive_dict(MyDict, minprotocol=2) |
nothing calls this directly
no test coverage detected