Why is seeding the random generator not stable between versions of Python?
I am trying to reproduce a random sequence from python's random.random() on a different system with a different python3 version installed. This should be easy as the documentation says : Most of the random module’s algorithms and seeding functions are subject to change across Python versions, but two aspects are guaranteed not to change: If a new seeding method is added, then a backward compatible seeder will be offered. The generator’s random() method will continue to produce the same sequence when the compatible seeder is given the same seed. So I expect the following code to print always