diff options
author | Christian Heimes <christian@cheimes.de> | 2013-07-01 11:08:42 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-07-01 11:08:42 (GMT) |
commit | 04926aeb2f88c39a25505e4a0474c6fb735e0f46 (patch) | |
tree | e2f8f58f84ec61dfb533a58320af98409c9b5c57 /Misc | |
parent | ec4bdac8dd8c1a2fb6c211046dd0fca47a9896f2 (diff) | |
download | cpython-04926aeb2f88c39a25505e4a0474c6fb735e0f46.zip cpython-04926aeb2f88c39a25505e4a0474c6fb735e0f46.tar.gz cpython-04926aeb2f88c39a25505e4a0474c6fb735e0f46.tar.bz2 |
Issue 18240: The HMAC module is no longer restricted to bytes and accepts
any bytes-like object, e.g. memoryview. Original patch by Jonas Borgström.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -138,6 +138,7 @@ Gawain Bolton Forest Bond Gregory Bond Matias Bordese +Jonas Borgström Jurjen Bos Peter Bosch Dan Boswell @@ -135,6 +135,9 @@ Core and Builtins Library ------- +- Issue 18240: The HMAC module is no longer restricted to bytes and accepts + any bytes-like object, e.g. memoryview. Original patch by Jonas Borgström. + - Issue #18224: Removed pydoc script from created venv, as it causes problems on Windows and adds no value over and above python -m pydoc ... |