Tim Peters added the comment:

Actually, there is something to be gained here, for smaller tables.  The simple 
formulas for the expected number of probes under uniform hashing are upper 
bounds, and are significantly overstated when the load factor is very high (not 
a concern for Python) or the table is small.  Using exact analysis gives 
smaller values in those cases, which a slow implementation of uniform hashing 
achieves.  The current method does not.  I'll post more about this to 
python-ideas.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30671>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to