We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76a3d35 commit 2cfd182Copy full SHA for 2cfd182
1 file changed
stdlib/hashlib.pyi
@@ -22,7 +22,7 @@ from _typeshed import ReadableBuffer
22
from collections.abc import Callable, Set as AbstractSet
23
from typing import Protocol, type_check_only
24
25
-if sys.version_info >= (3, 11):
+if sys.version_info >= (3, 15):
26
__all__ = (
27
"md5",
28
"sha1",
@@ -45,6 +45,28 @@ if sys.version_info >= (3, 11):
45
"pbkdf2_hmac",
46
"scrypt",
47
)
48
+elif sys.version_info >= (3, 11):
49
+ __all__ = (
50
+ "md5",
51
+ "sha1",
52
+ "sha224",
53
+ "sha256",
54
+ "sha384",
55
+ "sha512",
56
+ "blake2b",
57
+ "blake2s",
58
+ "sha3_224",
59
+ "sha3_256",
60
+ "sha3_384",
61
+ "sha3_512",
62
+ "shake_128",
63
+ "shake_256",
64
+ "new",
65
+ "algorithms_guaranteed",
66
+ "algorithms_available",
67
+ "file_digest",
68
+ "pbkdf2_hmac",
69
+ )
70
else:
71
72
0 commit comments