(self)
| 134 | self.assertIsNot(y, x) |
| 135 | |
| 136 | def test_copy_frozendict(self): |
| 137 | x = frozendict(x=1, y=2) |
| 138 | self.assertIs(copy.copy(x), x) |
| 139 | x = frozendict() |
| 140 | self.assertIs(copy.copy(x), x) |
| 141 | |
| 142 | def test_copy_set(self): |
| 143 | x = {1, 2, 3} |
nothing calls this directly
no test coverage detected