summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-10-30 03:38:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-10-30 03:38:04 (GMT)
commit788cb52905efa5be5d5a05d336940444ba332089 (patch)
treebbf2f0ff672333e5443f21e8a2b7cf46291d59a6 /Misc
parent265cee04806c55756e5480bd3405ec4d1d8129f0 (diff)
downloadcpython-788cb52905efa5be5d5a05d336940444ba332089.zip
cpython-788cb52905efa5be5d5a05d336940444ba332089.tar.gz
cpython-788cb52905efa5be5d5a05d336940444ba332089.tar.bz2
always use os.urandom for the uuid4 algorithm (closes #25515)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index be859ed..6a9afeb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,8 @@ Library
- Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties.
Original patch by John Mark Vandenberg.
+- Issue #25515: Always use os.urandom as a source of randomness in uuid.uuid4.
+
- Issue #21827: Fixed textwrap.dedent() for the case when largest common
whitespace is a substring of smallest leading whitespace.
Based on patch by Robert Li.