diff options
author | Raymond Hettinger <python@rcn.com> | 2016-08-31 22:01:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-08-31 22:01:08 (GMT) |
commit | c7bab7cbf5d6a8b442f2ed3e23543cb4ee826c87 (patch) | |
tree | 5cb8f216dfd9a2ff8e034a618971f87f0ce287b2 /Misc | |
parent | 4786787c07ba660c62a233ebfd16a8fcebc1c13e (diff) | |
download | cpython-c7bab7cbf5d6a8b442f2ed3e23543cb4ee826c87.zip cpython-c7bab7cbf5d6a8b442f2ed3e23543cb4ee826c87.tar.gz cpython-c7bab7cbf5d6a8b442f2ed3e23543cb4ee826c87.tar.bz2 |
Issue #27706: Fix regression in random.seed(somestr, version=1)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -55,6 +55,11 @@ Library - Issue #19884: Avoid spurious output on OS X with Gnu Readline. +- Issue #27706: Restore deterministic behavior of random.Random().seed() + for string seeds using seeding version 1. Allows sequences of calls + to random() to exactly match those obtained in Python 2. + Patch by Nofar Schnider. + - Issue #10513: Fix a regression in Connection.commit(). Statements should not be reset after a commit. |