summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2020-05-16 23:05:40 (GMT)
committerGitHub <noreply@github.com>2020-05-16 23:05:40 (GMT)
commit837f9e42e3a1ad03b340661afe85e67d2719334f (patch)
tree74280c3ef52a982d51b3337bc3d219722c09390f /Doc
parentdff92bb31f7db1a80ac431811f8108bd0ef9be43 (diff)
downloadcpython-837f9e42e3a1ad03b340661afe85e67d2719334f.zip
cpython-837f9e42e3a1ad03b340661afe85e67d2719334f.tar.gz
cpython-837f9e42e3a1ad03b340661afe85e67d2719334f.tar.bz2
bpo-40645: Deprecated internal details of hmac.HMAC (GH-20132)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/hmac.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/hmac.rst b/Doc/library/hmac.rst
index 57ac8bb..5ad3484 100644
--- a/Doc/library/hmac.rst
+++ b/Doc/library/hmac.rst
@@ -114,6 +114,12 @@ A hash object has the following attributes:
.. versionadded:: 3.4
+.. deprecated:: 3.9
+
+ The undocumented attributes ``HMAC.digest_cons``, ``HMAC.inner``, and
+ ``HMAC.outer`` are internal implementation details and will be removed in
+ Python 3.10.
+
This module also provides the following helper function:
.. function:: compare_digest(a, b)