diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-12-12 16:31:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 16:31:04 (GMT) |
commit | fe9991bb672dd95fb9cd38b5a03180719ac4e722 (patch) | |
tree | 31195ae5199e7e24f7a043f2762d5530581e4e11 /Lib/hmac.py | |
parent | eafc2381a0b891383098b08300ae766868a19ba6 (diff) | |
download | cpython-fe9991bb672dd95fb9cd38b5a03180719ac4e722.zip cpython-fe9991bb672dd95fb9cd38b5a03180719ac4e722.tar.gz cpython-fe9991bb672dd95fb9cd38b5a03180719ac4e722.tar.bz2 |
gh-112999: Replace the outdated "deprecated" directives with "versionchanged" (GH-113000)
Diffstat (limited to 'Lib/hmac.py')
-rw-r--r-- | Lib/hmac.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/hmac.py b/Lib/hmac.py index 8b4f920..8b4eb2f 100644 --- a/Lib/hmac.py +++ b/Lib/hmac.py @@ -53,7 +53,7 @@ class HMAC: raise TypeError("key: expected bytes or bytearray, but got %r" % type(key).__name__) if not digestmod: - raise TypeError("Missing required parameter 'digestmod'.") + raise TypeError("Missing required argument 'digestmod'.") if _hashopenssl and isinstance(digestmod, (str, _functype)): try: |