diff options
author | Stanley <46876382+slateny@users.noreply.github.com> | 2022-06-06 16:47:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-06 16:47:40 (GMT) |
commit | 56b5daf15970be449d44e91f08db84c698ac5506 (patch) | |
tree | ced34a18efa7c6818898a9edd707a03f08126752 | |
parent | 8584981a5894ba79fbabbfe7e3ef37ba6f3c2f14 (diff) | |
download | cpython-56b5daf15970be449d44e91f08db84c698ac5506.zip cpython-56b5daf15970be449d44e91f08db84c698ac5506.tar.gz cpython-56b5daf15970be449d44e91f08db84c698ac5506.tar.bz2 |
gh-83728: Add hmac.new default parameter deprecation (GH-91939)
-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 9e8d6fe..077de05 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -2008,6 +2008,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 -------------------- |