diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-04 22:25:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-04 22:25:21 (GMT) |
commit | e04b627a116b4fed8fd76f9376ef53592c49d183 (patch) | |
tree | d34fbf300c14d372370177e81d3e3cab48999d55 /Modules/sha256module.c | |
parent | ec75312eaafd6535347378179c657fca9e021e0b (diff) | |
download | cpython-e04b627a116b4fed8fd76f9376ef53592c49d183.zip cpython-e04b627a116b4fed8fd76f9376ef53592c49d183.tar.gz cpython-e04b627a116b4fed8fd76f9376ef53592c49d183.tar.bz2 |
remove old undocumented compat interfaces in hashlib and pwd #5881
Diffstat (limited to 'Modules/sha256module.c')
-rw-r--r-- | Modules/sha256module.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/sha256module.c b/Modules/sha256module.c index 7c9b58d..a9ac748 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 */ }; |