diff options
author | Raymond Hettinger <python@rcn.com> | 2013-09-22 03:17:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-09-22 03:17:31 (GMT) |
commit | 710a67edfc5ffe085284d60c438008ac563fb984 (patch) | |
tree | 857ade2f8224d985b839ebe7541e16f8f9206668 /Objects/setobject.c | |
parent | 4ef0528b97f934a26d04e7956c9320635fa90b8c (diff) | |
download | cpython-710a67edfc5ffe085284d60c438008ac563fb984.zip cpython-710a67edfc5ffe085284d60c438008ac563fb984.tar.gz cpython-710a67edfc5ffe085284d60c438008ac563fb984.tar.bz2 |
Note that LINEAR_PROBES can be set to zero.
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r-- | Objects/setobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c index 22d9cb3..adc99da 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 |