From c404435c0d4a06c11ef2f6536a2d8e6f484c6e47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9n=C3=A9dikt=20Tran?= <10796600+picnixz@users.noreply.github.com> Date: Sat, 26 Apr 2025 14:51:18 +0200 Subject: [PATCH] remove outdated TODO comment --- Lib/test/test_hmac.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_hmac.py b/Lib/test/test_hmac.py index 8370ba30601fae..e9a465180e9ce1 100644 --- a/Lib/test/test_hmac.py +++ b/Lib/test/test_hmac.py @@ -980,8 +980,6 @@ def exc_type(self): 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),