Skip to content

Commit

Permalink
Hardcode hash cutoff
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Aug 27, 2024
1 parent 0364811 commit 04d5e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/pyhash.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ extern "C" {
* provide a decent safety margin.
*/
#ifndef Py_HASH_CUTOFF
# define Py_HASH_CUTOFF 0
# define Py_HASH_CUTOFF 7
#elif (Py_HASH_CUTOFF > 7 || Py_HASH_CUTOFF < 0)
# error Py_HASH_CUTOFF must in range 0...7.
#endif /* Py_HASH_CUTOFF */
Expand Down

0 comments on commit 04d5e93

Please sign in to comment.