aboutsummaryrefslogtreecommitdiff
path: root/tests/stress/dict_create_max.py
AgeCommit message (Collapse)Author
2018-02-24tests/stress: Add test to create a dict beyond "maximum" rehash size.Damien George
There is a finite list of ascending primes used for the size of a hash table, and this test tests that the code can handle a dict larger than the maximum value in that list of primes. Adding this tests gets py/map.c to 100% coverage.