summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-08-31 22:01:28 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-08-31 22:01:28 (GMT)
commit112835cb3e8423046a21e427d050f3e3fefe622b (patch)
tree5d4540b67d5b07a68fb0c6bfd8cd16658dc5d061 /Misc
parent898ac56fc2667af051b739cdbc2f8aba97ebf09c (diff)
parentc7bab7cbf5d6a8b442f2ed3e23543cb4ee826c87 (diff)
downloadcpython-112835cb3e8423046a21e427d050f3e3fefe622b.zip
cpython-112835cb3e8423046a21e427d050f3e3fefe622b.tar.gz
cpython-112835cb3e8423046a21e427d050f3e3fefe622b.tar.bz2
Merge
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 699026d..83a8b06 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -72,6 +72,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.