diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-10-30 03:38:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-10-30 03:38:04 (GMT) |
commit | 788cb52905efa5be5d5a05d336940444ba332089 (patch) | |
tree | bbf2f0ff672333e5443f21e8a2b7cf46291d59a6 /Misc | |
parent | 265cee04806c55756e5480bd3405ec4d1d8129f0 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |