summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-08-13 23:39:14 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-08-13 23:39:14 (GMT)
commit7f7b941fdcdfe28f3cd37e84bc5d7a298385b451 (patch)
treec054580a869424e5b2b5df47f576f1929401db8a /Misc
parent4bfa6c54ca0d8d51be01ce45436a7f26b9926018 (diff)
downloadcpython-7f7b941fdcdfe28f3cd37e84bc5d7a298385b451.zip
cpython-7f7b941fdcdfe28f3cd37e84bc5d7a298385b451.tar.gz
cpython-7f7b941fdcdfe28f3cd37e84bc5d7a298385b451.tar.bz2
Issue #18405: Improve the entropy of crypt.mksalt().
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 b37bf3a..7a4491a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,8 @@ Core and Builtins
Library
-------
+- Issue #18405: Improve the entropy of crypt.mksalt().
+
- Issue #18676: Change 'positive' to 'non-negative' in queue.py put and get
docstrings and ValueError messages. Patch by Zhongyue Luo