summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-05-31 20:26:22 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-05-31 20:26:22 (GMT)
commit48f2e9980838d592f73b85714694f912fb6452fd (patch)
tree313add84c600cea8d8f336463436a4d3f44305d1 /Misc
parentd2058fb5b24bc0a505a57c33d26a98da2001a572 (diff)
downloadcpython-48f2e9980838d592f73b85714694f912fb6452fd.zip
cpython-48f2e9980838d592f73b85714694f912fb6452fd.tar.gz
cpython-48f2e9980838d592f73b85714694f912fb6452fd.tar.bz2
backport hashlib.pbkdf2_hmac per PEP 466 (closes #21304)
Backport by Alex Gaynor.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 012acd7..b4fe8fb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #21304: Backport the key derivation function hashlib.pbkdf2_hmac from
+ Python 3 per PEP 466.
+
- Issue #21552: Fixed possible integer overflow of too long string lengths in
the tkinter module on 64-bit platforms.