We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
python
Learn more about funding links in repositories.
Report abuse
1 parent cff813b commit b35172fCopy full SHA for b35172f
Lib/test/test_bigmem.py
@@ -1250,11 +1250,11 @@ def test_sort(self, size):
1250
1251
class DictTest(unittest.TestCase):
1252
1253
- @bigmemtest(size=357913941, memuse=160)
1254
- def test_dict(self, size):
1255
- # https://github.com/python/cpython/issues/102701
1256
- d = dict.fromkeys(range(size))
1257
- d[size] = 1
+ @bigmemtest(size=357913941, memuse=160)
+ def test_dict(self, size):
+ # https://github.com/python/cpython/issues/102701
+ d = dict.fromkeys(range(size))
+ d[size] = 1
1258
1259
1260
if __name__ == '__main__':
0 commit comments