diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-06-15 11:14:08 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-06-15 11:14:08 (GMT) |
commit | 807770ec1bead8aff0716384621638ed80e9f56b (patch) | |
tree | 92340839af07f9033c315292b9bb1eb9a777b9b8 /Misc | |
parent | 307693a8bb3b5b5ff2e3a0d5a0a837289e4de8be (diff) | |
download | cpython-807770ec1bead8aff0716384621638ed80e9f56b.zip cpython-807770ec1bead8aff0716384621638ed80e9f56b.tar.gz cpython-807770ec1bead8aff0716384621638ed80e9f56b.tar.bz2 |
Issue #15061: Don't oversell the capabilities of the new non-shortcircuiting comparison function in hmac
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -21,6 +21,11 @@ Core and Builtins Library ------- +- Issue #15061: The inappropriately named hmac.secure_compare has been + renamed to hash.compare_digest, restricted to operating on bytes inputs + only and had its documentation updated to more acurrately reflect both its + intent and its limitations + - Issue #13841: Make child processes exit using sys.exit() on Windows. - Issue #14936: curses_panel was converted to PEP 3121 and PEP 384 API. |