summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-08-31 22:01:08 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-08-31 22:01:08 (GMT)
commitc7bab7cbf5d6a8b442f2ed3e23543cb4ee826c87 (patch)
tree5cb8f216dfd9a2ff8e034a618971f87f0ce287b2 /Misc
parent4786787c07ba660c62a233ebfd16a8fcebc1c13e (diff)
downloadcpython-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/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 129e124..731685f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.