(self, size)
| 1253 | |
| 1254 | @bigmemtest(size=357913941, memuse=160) |
| 1255 | def test_dict(self, size): |
| 1256 | # https://github.com/python/cpython/issues/102701 |
| 1257 | d = dict.fromkeys(range(size)) |
| 1258 | d[size] = 1 |
| 1259 | |
| 1260 | |
| 1261 | class ImmortalityTest(unittest.TestCase): |