This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mfthomps
Recipients mfthomps
Date 2019-12-11.00:25:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1576023938.27.0.564451634943.issue39023@roundup.psfhosted.org>
In-reply-to
Content
Version 3.5.2, the "rand string seed" is not deterministic in code sample below across multiple invocations of the program.  Python 3.6.8 works fine.

#!/usr/bin/env python3
import random
lis = '94'
random.seed(lis, version=1)
w = random.random() * 100
print('rand string seed: %d' % w)
lis = 94
random.seed(lis, version=1)
w = random.random() * 100
print('rand int seed: %d' % w)


Running in a Docker container: uname -a:
Linux formatstring-igrader 4.15.0-20-generic #21-Ubuntu SMP Tue Apr 24 06:16:15 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
History
Date User Action Args
2019-12-11 00:25:38mfthompssetrecipients: + mfthomps
2019-12-11 00:25:38mfthompssetmessageid: <1576023938.27.0.564451634943.issue39023@roundup.psfhosted.org>
2019-12-11 00:25:38mfthompslinkissue39023 messages
2019-12-11 00:25:37mfthompscreate