summaryrefslogtreecommitdiff
path: root/Modules/_blake2/blake2b_impl.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-05-02 09:47:45 +0200
committerGitHub <noreply@github.com>2021-05-02 09:47:45 +0200
commit91554e4c5ca3c762998296522f854a7166ba84f0 (patch)
treeaa6e08eedef59c4a4d5c750ed60e5d463f05a4ad /Modules/_blake2/blake2b_impl.c
parentfd0bc7e7f4f2c7de98a1ebc7ad1ef65b8f8f7ad6 (diff)
downloadcpython-git-91554e4c5ca3c762998296522f854a7166ba84f0.tar.gz
bpo-43908: Mark ssl, hash, and hmac types as immutable (GH-25792)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Modules/_blake2/blake2b_impl.c')
-rw-r--r--Modules/_blake2/blake2b_impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_blake2/blake2b_impl.c b/Modules/_blake2/blake2b_impl.c
index 5d108ed008..8b0d60d02a 100644
--- a/Modules/_blake2/blake2b_impl.c
+++ b/Modules/_blake2/blake2b_impl.c
@@ -409,6 +409,6 @@ static PyType_Slot blake2b_type_slots[] = {
PyType_Spec blake2b_type_spec = {
.name = "_blake2.blake2b",
.basicsize = sizeof(BLAKE2bObject),
- .flags = Py_TPFLAGS_DEFAULT,
+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_IMMUTABLETYPE,
.slots = blake2b_type_slots
};