(self)
| 134 | self.assertIsNot(y, x) |
| 135 | |
| 136 | def test_copy_set(self): |
| 137 | x = {1, 2, 3} |
| 138 | y = copy.copy(x) |
| 139 | self.assertEqual(y, x) |
| 140 | self.assertIsNot(y, x) |
| 141 | x = set() |
| 142 | y = copy.copy(x) |
| 143 | self.assertEqual(y, x) |
| 144 | self.assertIsNot(y, x) |
| 145 | |
| 146 | def test_copy_frozenset(self): |
| 147 | x = frozenset({1, 2, 3}) |
nothing calls this directly
no test coverage detected