summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
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