I want to have consistent hash values in Python using the built in hash function. I thus want to set the environmental variable PYTHONHASHSEED to a number, as documented in https://docs.python.org/3/using/cmdline.html , to over-ride the randomization. How is this possible on windows? (most of the instructions i have seen, e.g., export PYTHONHASHSEED=100
seem to be for Linux).
I have tried adding PYTHONHASHSEED
with a number under environmental variables (in system properties), but the number from the hash function when i run python still changes every time.