summaryrefslogtreecommitdiff
path: root/Modules/sha256module.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-05-04 22:25:21 +0000
committerBenjamin Peterson <benjamin@python.org>2009-05-04 22:25:21 +0000
commitc0109f31093827d0b59c2a247456666c32be5fb9 (patch)
treebe403316178ff102359744acf111658d583bc7c5 /Modules/sha256module.c
parent0705747d44636b722fa8b6aa54b10e61e859e949 (diff)
downloadcpython-c0109f31093827d0b59c2a247456666c32be5fb9.tar.gz
remove old undocumented compat interfaces in hashlib and pwd #5881
Diffstat (limited to 'Modules/sha256module.c')
-rw-r--r--Modules/sha256module.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/sha256module.c b/Modules/sha256module.c
index 7c9b58d400..a9ac748b62 100644
--- a/Modules/sha256module.c
+++ b/Modules/sha256module.c
@@ -533,9 +533,6 @@ static PyGetSetDef SHA_getseters[] = {
static PyMemberDef SHA_members[] = {
{"digest_size", T_INT, offsetof(SHAobject, digestsize), READONLY, NULL},
- /* the old md5 and sha modules support 'digest_size' as in PEP 247.
- * the old sha module also supported 'digestsize'. ugh. */
- {"digestsize", T_INT, offsetof(SHAobject, digestsize), READONLY, NULL},
{NULL} /* Sentinel */
};