Note that LINEAR_PROBES can be set to zero.

This commit is contained in:
Raymond Hettinger 2013-09-21 20:17:31 -07:00
parent 4ef0528b97
commit 710a67edfc
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ PyObject *_PySet_Dummy = dummy;
/* ======================================================================== */
/* ======= Begin logic for probing the hash table ========================= */
/* This should be >= PySet_MINSIZE - 1 */
/* Set this to zero to turn-off linear probing */
#ifndef LINEAR_PROBES
#define LINEAR_PROBES 9
#endif