aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib
diff options
context:
space:
mode:
authorBénédikt Tran <10796600+picnixz@users.noreply.github.com>2025-04-26 15:17:03 +0200
committerGitHub <noreply@github.com>2025-04-26 13:17:03 +0000
commite714ead7a2895799b7f2cbded086378d92625a3a (patch)
tree6516b14f4e7036f7126d61dddafc2bf882c1dc75 /Lib
parent7f02ded29fb0e7f4ee115b5be32a591ff7b449b8 (diff)
downloadcpython-e714ead7a2895799b7f2cbded086378d92625a3a.tar.gz
cpython-e714ead7a2895799b7f2cbded086378d92625a3a.zip
gh-132388: remove outdated TODO comment in `test_hmac.py` (#133008)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_hmac.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_hmac.py b/Lib/test/test_hmac.py
index 8370ba30601..e9a465180e9 100644
--- a/Lib/test/test_hmac.py
+++ b/Lib/test/test_hmac.py
@@ -980,8 +980,6 @@ class OpenSSLConstructorTestCase(ThroughOpenSSLAPIMixin,
return _hashlib.UnsupportedDigestmodError
def test_hmac_digest_digestmod_parameter(self):
- # TODO(picnixz): remove default arguments in _hashlib.hmac_digest()
- # since the return value is not a HMAC object but a bytes object.
for value in [object, 'unknown', 1234, None]:
with (
self.subTest(value=value),