diff options
author | Christian Heimes <christian@python.org> | 2020-05-16 23:05:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-16 23:05:40 (GMT) |
commit | 837f9e42e3a1ad03b340661afe85e67d2719334f (patch) | |
tree | 74280c3ef52a982d51b3337bc3d219722c09390f /Misc | |
parent | dff92bb31f7db1a80ac431811f8108bd0ef9be43 (diff) | |
download | cpython-837f9e42e3a1ad03b340661afe85e67d2719334f.zip cpython-837f9e42e3a1ad03b340661afe85e67d2719334f.tar.gz cpython-837f9e42e3a1ad03b340661afe85e67d2719334f.tar.bz2 |
bpo-40645: Deprecated internal details of hmac.HMAC (GH-20132)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-05-16-19-34-38.bpo-40645.7ibMt-.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-16-19-34-38.bpo-40645.7ibMt-.rst b/Misc/NEWS.d/next/Library/2020-05-16-19-34-38.bpo-40645.7ibMt-.rst new file mode 100644 index 0000000..19d5a65 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-05-16-19-34-38.bpo-40645.7ibMt-.rst @@ -0,0 +1,3 @@ +The :class:`hmac.HMAC` exposes internal implementation details. The +attributes ``digest_cons``, ``inner``, and ``outer`` are deprecated and will +be removed in the future. |