From: Raymond Hettinger Date: Sun, 22 Sep 2013 03:17:31 +0000 (-0700) Subject: Note that LINEAR_PROBES can be set to zero. X-Git-Tag: v3.4.0a3~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=710a67edfc5ffe085284d60c438008ac563fb984;p=python Note that LINEAR_PROBES can be set to zero. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index 22d9cb35cb..adc99da627 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -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