From 710a67edfc5ffe085284d60c438008ac563fb984 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 21 Sep 2013 20:17:31 -0700 Subject: [PATCH] Note that LINEAR_PROBES can be set to zero. --- Objects/setobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/setobject.c b/Objects/setobject.c index 22d9cb35cbe..adc99da6276 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