Comment

Dan Girellini

The build-in hash function will not always return the same results across different invocations of your program. Check out the note at the bottom of the hash documentation about PYTHONHASHSEED: https://docs.python.org/3/reference/datamodel.html#object.__hash__

Parent comment

erik

Python has a built-in hash() function that's faster than all of these.

Replies

Anonymous

Yeah, I was testing in an pre 3.3. fnv is ok i guess.