diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-06 17:09:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-06 17:09:51 (GMT) |
commit | f46e30f9d4fc2f5e5adbdac75b9430ce0a6b35af (patch) | |
tree | e97bcff52342fe4ce758185cf7857eff43345226 /Doc/whatsnew | |
parent | e8404f46b3040772ecccfe475ebfb75305ef72cb (diff) | |
download | cpython-f46e30f9d4fc2f5e5adbdac75b9430ce0a6b35af.zip cpython-f46e30f9d4fc2f5e5adbdac75b9430ce0a6b35af.tar.gz cpython-f46e30f9d4fc2f5e5adbdac75b9430ce0a6b35af.tar.bz2 |
gh-83728: Add hmac.new default parameter deprecation (GH-91939) (GH-93544)
(cherry picked from commit 56b5daf15970be449d44e91f08db84c698ac5506)
Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 1633324..51e1f9a 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -2005,6 +2005,8 @@ Changes in the Python API ``replace()`` method of :class:`types.CodeType` can be used to make the code future-proof. +* The parameter ``digestmod`` for :func:`hmac.new` no longer uses the MD5 digest + by default. Changes in the C API -------------------- |