(self, n)
| 970 | self.assertIs(ref(), None, "Cycle was not collected") |
| 971 | |
| 972 | def make_shared_key_dict(self, n): |
| 973 | class C: |
| 974 | pass |
| 975 | |
| 976 | dicts = [] |
| 977 | for i in range(n): |
| 978 | a = C() |
| 979 | a.x, a.y, a.z = 1, 2, 3 |
| 980 | dicts.append(a.__dict__) |
| 981 | |
| 982 | return dicts |
| 983 | |
| 984 | @support.cpython_only |
| 985 | def test_splittable_setdefault(self): |
no test coverage detected