Skip to content
Prev Previous commit
Next Next commit
remove comment
  • Loading branch information
koubaa committed Sep 3, 2020
commit b66a9654c7316ed265a164dbd53f845aea560fdf
2 changes: 0 additions & 2 deletions Modules/md5module.c
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,6 @@ static PyType_Slot md5_type_slots[] = {
{0,0}
};

// Using PyType_GetModuleState() on this type is safe since
// it cannot be subclassed: it does not have the Py_TPFLAGS_BASETYPE flag.
static PyType_Spec md5_type_spec = {
.name = "_md5.md5",
.basicsize = sizeof(MD5object),
Expand Down
2 changes: 0 additions & 2 deletions Modules/sha1module.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,6 @@ static PyType_Slot sha1_type_slots[] = {
{0,0}
};

// Using PyType_GetModuleState() on this type is safe since
// it cannot be subclassed: it does not have the Py_TPFLAGS_BASETYPE flag.
static PyType_Spec sha1_type_spec = {
.name = "_sha1.sha1",
.basicsize = sizeof(SHA1object),
Expand Down
2 changes: 0 additions & 2 deletions Modules/sha512module.c
Original file line number Diff line number Diff line change
Expand Up @@ -599,8 +599,6 @@ static PyType_Slot sha512_sha384_type_slots[] = {
{0,0}
};

// Using PyType_GetModuleState() on this type is safe since
// it cannot be subclassed: it does not have the Py_TPFLAGS_BASETYPE flag.
static PyType_Spec sha512_sha384_type_spec = {
.name = "_sha512.sha384",
.basicsize = sizeof(SHAobject),
Expand Down